Skip to content

Latest commit

 

History

History
executable file
·
30 lines (21 loc) · 893 Bytes

Application.md

File metadata and controls

executable file
·
30 lines (21 loc) · 893 Bytes

Application

Properties

Name Type Description Notes
pk int [optional] [readonly]
name str [optional] [readonly]

Example

from epiccore.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_form_dict = application.from_dict(application_dict)

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