Shopee SDK API Reference - v2.8.0
    Preparing search index...

    Interface GetVideoUploadResultResponseData

    GetVideoUploadResultResponseData sub-interface for GetVideoUploadResultResponse

    interface GetVideoUploadResultResponseData {
        reason?: string;
        status?: string | number;
        update_time?: number | Date;
        video_info?: GetVideoUploadResultVideoInfo;
    }
    Index

    Properties

    reason?: string

    Detailed fail or cancel reason, will be returned if status is FAILED or CANCELLED.

    status?: string | number

    Current status of the upload task. Possible values:- INITIATED: Upload task has been created (via init_video_upload) but no parts have been uploaded yet.- UPLOADING: Video file parts are being uploaded. The upload has started but is not yet completed.- UPLOADED: All video parts have been uploaded successfully, waiting for complete_video_upload to trigger processing.- PROCESSING: Video is being transcoded/validated by the system (duration, format, resolution checks).- SUCCEEDED: Video upload and transcoding completed successfully. Video URL and cover URL are available for use.- FAILED: Upload or processing failed (e.g., invalid format, duration not within allowed range, transcoding error).- CANCELLED: Upload task was explicitly canceled by the client (cancel_video_upload), and the video is discarded.

    update_time?: number | Date

    The time of video status updates.

    Transcoded video info, will be returned if status is SUCCEEDED.