Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 927 Bytes

RemixersResponse.md

File metadata and controls

29 lines (20 loc) · 927 Bytes

RemixersResponse

Properties

Name Type Description Notes
data List[User] [optional]

Example

from pyaudius.models.remixers_response import RemixersResponse

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

# convert the object into a dict
remixers_response_dict = remixers_response_instance.to_dict()
# create an instance of RemixersResponse from a dict
remixers_response_from_dict = RemixersResponse.from_dict(remixers_response_dict)

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