Response data for a clip.

interface AssetResponseData {
    created?: string;
    error?: string;
    expiration?: string;
    feed?: MediaAssetFeedSelectionModel;
    id?: string;
    metadata?: RecordMetadata;
    name?: string;
    removed?: string;
    startTime: string;
    status: "error" | "complete" | "processing" | "deleting" | "deleted";
    stopTime?: string;
    storage: MediaAssetStorageResponseModel;
    type: "timeline" | "clip" | "recording" | "storageValidation" | "feed";
}

Properties

created?: string

Optional, ISO 8601 date string, Created Date.

error?: string

Optional, error details.

expiration?: string

Optional, ISO 8601 date string, Expiration Date.

Optional, information about the asset.

id?: string

Optional, ID of the object.

metadata?: RecordMetadata

Optional, asset metadata.

name?: string

Optional, name of the asset.

removed?: string

Optional, ISO 8601 date string, Deleted Date.

startTime: string

Required, ISO 8601 date string, Start time of clip.

status: "error" | "complete" | "processing" | "deleting" | "deleted"

The status of the Clip request.

stopTime?: string

Optional, ISO 8601 date string, End time of clip.

Storage information.

type: "timeline" | "clip" | "recording" | "storageValidation" | "feed"

Required, type of the object.