Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 795 Bytes

Access.md

File metadata and controls

30 lines (21 loc) · 795 Bytes

Access

Properties

Name Type Description Notes
stream bool
download bool

Example

from pyaudius.models.access import Access

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

# convert the object into a dict
access_dict = access_instance.to_dict()
# create an instance of Access from a dict
access_from_dict = Access.from_dict(access_dict)

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