| Name |
Type |
Description |
Notes |
| register_id |
str |
|
|
| register_name |
str |
|
|
| outlet_name |
str |
|
|
| outlet_number |
int |
Stores the outlet number |
|
| profit_center |
str |
|
|
| id |
str |
|
|
| created_at |
datetime |
|
|
| updated_at |
datetime |
|
|
| merchant_id |
str |
|
|
| is_active |
bool |
|
|
from wallet.models.wt_pos_machine import WTPosMachine
# TODO update the JSON string below
json = "{}"
# create an instance of WTPosMachine from a JSON string
wt_pos_machine_instance = WTPosMachine.from_json(json)
# print the JSON string representation of the object
print WTPosMachine.to_json()
# convert the object into a dict
wt_pos_machine_dict = wt_pos_machine_instance.to_dict()
# create an instance of WTPosMachine from a dict
wt_pos_machine_form_dict = wt_pos_machine.from_dict(wt_pos_machine_dict)
[Back to Model list] [Back to API list] [Back to README]