UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

35 lines (34 loc) 1.06 kB
import BitmovinResource from './BitmovinResource'; import Status from './Status'; /** * @export * @class TransferRetry */ export declare class TransferRetry extends BitmovinResource { /** * The current status of the transfer-retry. * @type {Status} * @memberof TransferRetry */ status?: Status; /** * Timestamp when the transfer-retry was started, returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ * @type {Date} * @memberof TransferRetry */ startedAt?: Date; /** * Timestamp when the transfer-retry status changed to 'FINISHED', returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ * @type {Date} * @memberof TransferRetry */ finishedAt?: Date; /** * Timestamp when the transfer-retry status changed to 'ERROR', returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ * @type {Date} * @memberof TransferRetry */ errorAt?: Date; constructor(obj?: Partial<TransferRetry>); } export default TransferRetry;