Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 986 Bytes

DeveloperApp.md

File metadata and controls

33 lines (24 loc) · 986 Bytes

DeveloperApp

Properties

Name Type Description Notes
address str
user_id str
name str
description str [optional]
image_url str [optional]

Example

from pyaudius.models.developer_app import DeveloperApp

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

# convert the object into a dict
developer_app_dict = developer_app_instance.to_dict()
# create an instance of DeveloperApp from a dict
developer_app_from_dict = DeveloperApp.from_dict(developer_app_dict)

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