Common properties for all application types.
| 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 |
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)