Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.6 KB

CreateApplicationRequest.md

File metadata and controls

36 lines (27 loc) · 1.6 KB

CreateApplicationRequest

Properties

Name Type Description Notes
name str
description str [optional]
type str
oidc_client_metadata ListApplications200ResponseInnerOidcClientMetadata [optional]
custom_client_metadata ListApplications200ResponseInnerCustomClientMetadata [optional]
custom_data object arbitrary [optional]
is_third_party bool [optional]
protected_app_metadata CreateApplicationRequestProtectedAppMetadata [optional]

Example

from py_logto.models.create_application_request import CreateApplicationRequest

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

# convert the object into a dict
create_application_request_dict = create_application_request_instance.to_dict()
# create an instance of CreateApplicationRequest from a dict
create_application_request_from_dict = CreateApplicationRequest.from_dict(create_application_request_dict)

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