Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.47 KB

File metadata and controls

31 lines (22 loc) · 1.47 KB

GetAllTenantEmbedAppsLinksRequest

Properties

Name Type Description Notes
pagination PaginationParams Pagination parameters for the request. [optional]
filters List[OnelensDomainUtilitiesRepositoriesDynamicFiltersFilterCriteria] Filters to be applied
tenant_id str The unique identifier of the tenant

Example

from onelens_backend_client.models.get_all_tenant_embed_apps_links_request import GetAllTenantEmbedAppsLinksRequest

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

# convert the object into a dict
get_all_tenant_embed_apps_links_request_dict = get_all_tenant_embed_apps_links_request_instance.to_dict()
# create an instance of GetAllTenantEmbedAppsLinksRequest from a dict
get_all_tenant_embed_apps_links_request_form_dict = get_all_tenant_embed_apps_links_request.from_dict(get_all_tenant_embed_apps_links_request_dict)

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