Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.33 KB

File metadata and controls

33 lines (24 loc) · 1.33 KB

CreateClientBusinessUnitDto

Properties

Name Type Description Notes
name str Business unit name
description str Business unit description [optional]
type str Business unit type
parent_id float Parent business unit ID [optional]
user_ids List[float] Array of user IDs to assign to this business unit [optional]

Example

from watchtowr_api_sdk.models.create_client_business_unit_dto import CreateClientBusinessUnitDto

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

# convert the object into a dict
create_client_business_unit_dto_dict = create_client_business_unit_dto_instance.to_dict()
# create an instance of CreateClientBusinessUnitDto from a dict
create_client_business_unit_dto_from_dict = CreateClientBusinessUnitDto.from_dict(create_client_business_unit_dto_dict)

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