[docs]classApiCallStatus(str,Enum):"""The status of an async API call."""# noqa: E501"""# The async API call is queued. """# noqa: E501QUEUED="queued""""# The async API call was uploaded to be converted. """# noqa: E501UPLOADED="uploaded""""# The async API call is in progress. """# noqa: E501IN_PROGRESS="in_progress""""# The async API call has completed. """# noqa: E501COMPLETED="completed""""# The async API call has failed. """# noqa: E501FAILED="failed"