Workspace member name
| Name | Type | Description | Notes |
|---|---|---|---|
| first_name | str | [optional] | |
| last_name | str | [optional] |
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)