Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.66 KB

GetApplication200Response.md

File metadata and controls

40 lines (31 loc) · 1.66 KB

GetApplication200Response

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
is_admin bool

Example

from py_logto.models.get_application200_response import GetApplication200Response

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

# convert the object into a dict
get_application200_response_dict = get_application200_response_instance.to_dict()
# create an instance of GetApplication200Response from a dict
get_application200_response_from_dict = GetApplication200Response.from_dict(get_application200_response_dict)

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