Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.46 KB

CreateApplicationProtectedAppMetadataCustomDomainRequest.md

File metadata and controls

29 lines (20 loc) · 1.46 KB

CreateApplicationProtectedAppMetadataCustomDomainRequest

Properties

Name Type Description Notes
domain str The domain to be added to the application.

Example

from py_logto.models.create_application_protected_app_metadata_custom_domain_request import CreateApplicationProtectedAppMetadataCustomDomainRequest

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

# convert the object into a dict
create_application_protected_app_metadata_custom_domain_request_dict = create_application_protected_app_metadata_custom_domain_request_instance.to_dict()
# create an instance of CreateApplicationProtectedAppMetadataCustomDomainRequest from a dict
create_application_protected_app_metadata_custom_domain_request_from_dict = CreateApplicationProtectedAppMetadataCustomDomainRequest.from_dict(create_application_protected_app_metadata_custom_domain_request_dict)

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