A favorite
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Id | [optional] |
| created_at | datetime | Creation date | [optional] |
| updated_at | datetime | Last time the record was changed | [optional] |
| deleted_at | datetime | Date when the record was deleted | [optional] |
| position | int | Favorite position | [optional] |
| view_id | UUID | ViewId | [optional] |
| company_id | UUID | [optional] | |
| dashboard_id | UUID | [optional] | |
| for_workspace_member_id | UUID | [optional] | |
| person_id | UUID | [optional] | |
| opportunity_id | UUID | [optional] | |
| workflow_id | UUID | [optional] | |
| workflow_version_id | UUID | [optional] | |
| workflow_run_id | UUID | [optional] | |
| task_id | UUID | [optional] | |
| note_id | UUID | [optional] | |
| favorite_folder_id | UUID | [optional] | |
| company | CompanyForResponse | [optional] | |
| dashboard | DashboardForResponse | [optional] | |
| for_workspace_member | WorkspaceMemberForResponse | [optional] | |
| person | PersonForResponse | [optional] | |
| opportunity | OpportunityForResponse | [optional] | |
| workflow | WorkflowForResponse | [optional] | |
| workflow_version | WorkflowVersionForResponse | [optional] | |
| workflow_run | WorkflowRunForResponse | [optional] | |
| task | TaskForResponse | [optional] | |
| note | NoteForResponse | [optional] | |
| favorite_folder | FavoriteFolderForResponse | [optional] |
from twentycrm_client.models.favorite_for_response import FavoriteForResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FavoriteForResponse from a JSON string
favorite_for_response_instance = FavoriteForResponse.from_json(json)
# print the JSON string representation of the object
print(FavoriteForResponse.to_json())
# convert the object into a dict
favorite_for_response_dict = favorite_for_response_instance.to_dict()
# create an instance of FavoriteForResponse from a dict
favorite_for_response_from_dict = FavoriteForResponse.from_dict(favorite_for_response_dict)