Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.26 KB

File metadata and controls

30 lines (23 loc) · 1.26 KB

BusinessUnitDto

Properties

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

Example

from phrasetms_client.models.business_unit_dto import BusinessUnitDto

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

# convert the object into a dict
business_unit_dto_dict = business_unit_dto_instance.to_dict()
# create an instance of BusinessUnitDto from a dict
business_unit_dto_from_dict = BusinessUnitDto.from_dict(business_unit_dto_dict)

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