UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

42 lines (41 loc) 1.14 kB
import BitmovinResponse from './BitmovinResponse'; /** * @export * @class BitmovinResource */ export declare class BitmovinResource extends BitmovinResponse { /** * Name of the resource. Can be freely chosen by the user. * @type {string} * @memberof BitmovinResource */ name?: string; /** * Description of the resource. Can be freely chosen by the user. * @type {string} * @memberof BitmovinResource */ description?: string; /** * Creation timestamp, returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ * @type {Date} * @memberof BitmovinResource */ createdAt?: Date; /** * Modified timestamp, returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ * @type {Date} * @memberof BitmovinResource */ modifiedAt?: Date; /** * User-specific meta data. This can hold anything. * @type {{ [key: string]: any; }} * @memberof BitmovinResource */ customData?: { [key: string]: any; }; constructor(obj?: Partial<BitmovinResource>); } export default BitmovinResource;