Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.3 KB

File metadata and controls

30 lines (21 loc) · 1.3 KB

CreateApplicationRequestEnvironmentInner

Properties

Name Type Description Notes
name str Environment variable name [optional]
value str Environment variable value [optional]

Example

from quantcdn.models.create_application_request_environment_inner import CreateApplicationRequestEnvironmentInner

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

# convert the object into a dict
create_application_request_environment_inner_dict = create_application_request_environment_inner_instance.to_dict()
# create an instance of CreateApplicationRequestEnvironmentInner from a dict
create_application_request_environment_inner_from_dict = CreateApplicationRequestEnvironmentInner.from_dict(create_application_request_environment_inner_dict)

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