Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.62 KB

UpdateTenantEmbedAppsLinksResponse.md

File metadata and controls

36 lines (27 loc) · 1.62 KB

UpdateTenantEmbedAppsLinksResponse

Properties

Name Type Description Notes
created_by str The unique identifier of the user who created the link
created_at datetime The date and time when the link was created
updated_at datetime The date and time when the link was updated
updated_by str [optional]
tab_name str Name of the tab
link str Link of the tab
system_created bool [optional]
state TenantEmbedAppsLinkState State of the link

Example

from onelens_backend_client.models.update_tenant_embed_apps_links_response import UpdateTenantEmbedAppsLinksResponse

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

# convert the object into a dict
update_tenant_embed_apps_links_response_dict = update_tenant_embed_apps_links_response_instance.to_dict()
# create an instance of UpdateTenantEmbedAppsLinksResponse from a dict
update_tenant_embed_apps_links_response_form_dict = update_tenant_embed_apps_links_response.from_dict(update_tenant_embed_apps_links_response_dict)

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