Skip to content

Application

Properties

Name Type Description Notes
id str
name str The unique name identifying the application
type str The type of the application
display_name str The display name of the application [optional]

Example

from libica.openapi.v3.models.application import Application

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

# convert the object into a dict
application_dict = application_instance.to_dict()
# create an instance of Application from a dict
application_from_dict = Application.from_dict(application_dict)

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