You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When true, updates the 4K status field (status4k). When false or not provided, updates the regular status field (status). This applies to all status values (available, partial, processing, pending, unknown).
[optional]
Example
fromseerr.models.create_media_by_status_requestimportCreateMediaByStatusRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateMediaByStatusRequest from a JSON stringcreate_media_by_status_request_instance=CreateMediaByStatusRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateMediaByStatusRequest.to_json())
# convert the object into a dictcreate_media_by_status_request_dict=create_media_by_status_request_instance.to_dict()
# create an instance of CreateMediaByStatusRequest from a dictcreate_media_by_status_request_from_dict=CreateMediaByStatusRequest.from_dict(create_media_by_status_request_dict)