Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.73 KB

ListApplications200ResponseInner.md

File metadata and controls

39 lines (30 loc) · 1.73 KB

ListApplications200ResponseInner

Properties

Name Type Description Notes
tenant_id str
id str
name str
secret str
description str
type str
oidc_client_metadata ListApplications200ResponseInnerOidcClientMetadata
custom_client_metadata ListApplications200ResponseInnerCustomClientMetadata
protected_app_metadata ListApplications200ResponseInnerProtectedAppMetadata
is_third_party bool
created_at float

Example

from py_logto.models.list_applications200_response_inner import ListApplications200ResponseInner

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

# convert the object into a dict
list_applications200_response_inner_dict = list_applications200_response_inner_instance.to_dict()
# create an instance of ListApplications200ResponseInner from a dict
list_applications200_response_inner_from_dict = ListApplications200ResponseInner.from_dict(list_applications200_response_inner_dict)

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