tbapi.api.enums.ztype

 1from enum import Enum
 2from Tickblaze.Scripts.Api.Enums import ZType as _ZType
 3
 4class ZType(Enum):
 5
 6    AboveChart = 0
 7
 8    BelowChart = 1
 9
10    AboveAndBelowChart = 2
class ZType(enum.Enum):
 7class ZType(Enum):
 8
 9    AboveChart = 0
10
11    BelowChart = 1
12
13    AboveAndBelowChart = 2
AboveChart = <ZType.AboveChart: 0>
BelowChart = <ZType.BelowChart: 1>
AboveAndBelowChart = <ZType.AboveAndBelowChart: 2>