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 |
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)