Shopee SDK API Reference - v1.14.0
    Preparing search index...

    Interface GetBatchTaskResultResponse

    Response for getting batch task result

    interface GetBatchTaskResultResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            failed_list?: BatchTaskFailedRecord[];
            publish_status: number;
            success_list?: BatchTaskSuccessRecord[];
        };
        result?: {
            failed_list?: BatchTaskFailedRecord[];
            publish_status: number;
            success_list?: BatchTaskSuccessRecord[];
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    error: string
    message: string
    request_id: string
    response: {
        failed_list?: BatchTaskFailedRecord[];
        publish_status: number;
        success_list?: BatchTaskSuccessRecord[];
    }

    Type Declaration

    • Optionalfailed_list?: BatchTaskFailedRecord[]

      The batch task failed records.

    • publish_status: number

      The publish status. 1: ongoing; 2: finished.

    • Optionalsuccess_list?: BatchTaskSuccessRecord[]

      The batch task success records.

    result?: {
        failed_list?: BatchTaskFailedRecord[];
        publish_status: number;
        success_list?: BatchTaskSuccessRecord[];
    }

    Type Declaration

    • Optionalfailed_list?: BatchTaskFailedRecord[]

      The batch task failed records.

    • publish_status: number

      The publish status. 1: ongoing; 2: finished.

    • Optionalsuccess_list?: BatchTaskSuccessRecord[]

      The batch task success records.