27 lines
652 B
Python
27 lines
652 B
Python
|
# Used for Testing
|
||
|
TestLotName = 'temp_auto_test_lot_'
|
||
|
FakeAvId = 2847
|
||
|
|
||
|
# Lots Structure Fields
|
||
|
LotsFieldName = 'lots'
|
||
|
NextLotIdFieldName = 'next_lot_id'
|
||
|
|
||
|
# Code Space Structrue Fields
|
||
|
CodeLengthFieldName = 'code_length'
|
||
|
NextCodeValueFieldName = 'next_code_value'
|
||
|
|
||
|
# Lot Structures Fields
|
||
|
LotIdFieldName = 'lot_id'
|
||
|
NameFieldName = 'name'
|
||
|
ManualFieldName = 'manual'
|
||
|
RewardTypeFieldName = 'reward_type'
|
||
|
RewardItemIdFieldName = 'reward_item_id'
|
||
|
SizeFieldName = 'size'
|
||
|
CreationFieldName = 'creation'
|
||
|
ExpirationFieldName = 'expiration'
|
||
|
|
||
|
# Code Set Structure Fields
|
||
|
CodeFieldName = 'code'
|
||
|
RedemptionsFieldName = 'redemptions'
|
||
|
AvatarIdFieldName = 'avatar_id'
|