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

    Interface GetPublishTaskResultResponse

    Response for getting publish task result

    interface GetPublishTaskResultResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            result_list: {
                error_description?: string;
                item_id?: number;
                shop_id: number;
                success: boolean;
            }[];
            status: string;
        };
        result?: {
            result_list: {
                error_description?: string;
                item_id?: number;
                shop_id: number;
                success: boolean;
            }[];
            status: string;
        };
    }

    Hierarchy (View Summary)

    • FetchResponse<
          {
              result_list: {
                  error_description?: string;
                  item_id?: number;
                  shop_id: number;
                  success: boolean;
              }[];
              status: string;
          },
      >
      • GetPublishTaskResultResponse
    Index

    Properties

    error: string
    message: string
    request_id: string
    response: {
        result_list: {
            error_description?: string;
            item_id?: number;
            shop_id: number;
            success: boolean;
        }[];
        status: string;
    }

    Type Declaration

    • result_list: {
          error_description?: string;
          item_id?: number;
          shop_id: number;
          success: boolean;
      }[]

      List of publish results

    • status: string

      Task status: PROCESSING, SUCCESS, FAILED

    result?: {
        result_list: {
            error_description?: string;
            item_id?: number;
            shop_id: number;
            success: boolean;
        }[];
        status: string;
    }

    Type Declaration

    • result_list: {
          error_description?: string;
          item_id?: number;
          shop_id: number;
          success: boolean;
      }[]

      List of publish results

    • status: string

      Task status: PROCESSING, SUCCESS, FAILED