Represents the result of an upload operation.

interface OutputResult {
    Message: string;
    Success: boolean;
    ThumbnailsUrl: string[];
}

Properties

Message: string

Message associated with the upload result.

Success: boolean

Indicates whether the upload was successful.

ThumbnailsUrl: string[]

URLs of thumbnails generated during the upload.