Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.24 KB

CostCenterDto.md

File metadata and controls

30 lines (23 loc) · 1.24 KB

CostCenterDto

Properties

Name Type Description Notes
id str [optional]
uid str [optional]
name str [optional]
created_by UserReference [optional]

Example

from phrasetms_client.models.cost_center_dto import CostCenterDto

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

# convert the object into a dict
cost_center_dto_dict = cost_center_dto_instance.to_dict()
# create an instance of CostCenterDto from a dict
cost_center_dto_from_dict = CostCenterDto.from_dict(cost_center_dto_dict)

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