[docs]defsync(sort_by:CreatedAtSortMode,status:ApiCallStatus,*,client:Client,limit:Optional[int]=None,page_token:Optional[str]=None,)->Optional[Union[AsyncApiCallResultsPage,Error]]:"""For async file conversion operations, this endpoint does not return the contents of converted files (`output`). To get the contents use the `/async/operations/{id}` endpoint. This endpoint requires authentication by a Zoo employee."""# noqa: E501returnsync_detailed(limit=limit,page_token=page_token,sort_by=sort_by,status=status,client=client,).parsed
[docs]asyncdefasyncio(sort_by:CreatedAtSortMode,status:ApiCallStatus,*,client:Client,limit:Optional[int]=None,page_token:Optional[str]=None,)->Optional[Union[AsyncApiCallResultsPage,Error]]:"""For async file conversion operations, this endpoint does not return the contents of converted files (`output`). To get the contents use the `/async/operations/{id}` endpoint. This endpoint requires authentication by a Zoo employee."""# noqa: E501return(awaitasyncio_detailed(limit=limit,page_token=page_token,sort_by=sort_by,status=status,client=client,)).parsed