Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.16 KB

WTPosMachineUpdateParams.md

File metadata and controls

33 lines (24 loc) · 1.16 KB

WTPosMachineUpdateParams

Properties

Name Type Description Notes
register_id str
register_name str
outlet_name str
outlet_number int Stores the outlet number
profit_center str

Example

from wallet.models.wt_pos_machine_update_params import WTPosMachineUpdateParams

# TODO update the JSON string below
json = "{}"
# create an instance of WTPosMachineUpdateParams from a JSON string
wt_pos_machine_update_params_instance = WTPosMachineUpdateParams.from_json(json)
# print the JSON string representation of the object
print WTPosMachineUpdateParams.to_json()

# convert the object into a dict
wt_pos_machine_update_params_dict = wt_pos_machine_update_params_instance.to_dict()
# create an instance of WTPosMachineUpdateParams from a dict
wt_pos_machine_update_params_form_dict = wt_pos_machine_update_params.from_dict(wt_pos_machine_update_params_dict)

[Back to Model list] [Back to API list] [Back to README]