Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

ApplicationProviderBase

Common properties for all application types.

Properties

Name Type Description Notes
name str The application name must be 1–253 characters long, start with a letter or number, and contain no whitespace. [optional]
app_type AppType

Example

from flightctl.models.application_provider_base import ApplicationProviderBase

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

# convert the object into a dict
application_provider_base_dict = application_provider_base_instance.to_dict()
# create an instance of ApplicationProviderBase from a dict
application_provider_base_from_dict = ApplicationProviderBase.from_dict(application_provider_base_dict)

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