Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 857 Bytes

MobileApp.md

File metadata and controls

30 lines (21 loc) · 857 Bytes

MobileApp

Properties

Name Type Description Notes
package_name str
package_version str

Example

from mosquito_alert.models.mobile_app import MobileApp

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

# convert the object into a dict
mobile_app_dict = mobile_app_instance.to_dict()
# create an instance of MobileApp from a dict
mobile_app_from_dict = MobileApp.from_dict(mobile_app_dict)

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