Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

WorkspaceMemberName

Workspace member name

Properties

Name Type Description Notes
first_name str [optional]
last_name str [optional]

Example

from twentycrm_client.models.workspace_member_name import WorkspaceMemberName

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

# convert the object into a dict
workspace_member_name_dict = workspace_member_name_instance.to_dict()
# create an instance of WorkspaceMemberName from a dict
workspace_member_name_from_dict = WorkspaceMemberName.from_dict(workspace_member_name_dict)

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