Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.36 KB

ApplicationResponse.md

File metadata and controls

36 lines (27 loc) · 1.36 KB

ApplicationResponse

Properties

Name Type Description Notes
application_id str Application ID
tenant_id str Tenant ID
customer_id str Customer ID
name str Application Name
description str Application Description
type str Application type
application_config List[ApplicationConfig] Application Config
requirements ApplicationRequirements Application Requirements

Example

from pfruck_contabo.models.application_response import ApplicationResponse

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

# convert the object into a dict
application_response_dict = application_response_instance.to_dict()
# create an instance of ApplicationResponse from a dict
application_response_from_dict = ApplicationResponse.from_dict(application_response_dict)

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