| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| uid | str | [optional] | |
| name | str | [optional] | |
| created_by | UserReference | [optional] |
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)