Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

InviteClientUserDto

Properties

Name Type Description Notes
email str Email address of the user to invite
role_type str Role type for the user
business_unit_ids List[float] Business Unit IDs to assign (required for BU_USER roles) [optional]

Example

from watchtowr_api_sdk.models.invite_client_user_dto import InviteClientUserDto

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

# convert the object into a dict
invite_client_user_dto_dict = invite_client_user_dto_instance.to_dict()
# create an instance of InviteClientUserDto from a dict
invite_client_user_dto_from_dict = InviteClientUserDto.from_dict(invite_client_user_dto_dict)

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