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

    Interface SearchPackageListResponse

    Response for searching package list

    interface SearchPackageListResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            more: boolean;
            next_cursor: string;
            package_list: SearchPackageListPackage[];
        };
        result?: {
            more: boolean;
            next_cursor: string;
            package_list: SearchPackageListPackage[];
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    error: string
    message: string
    request_id: string
    response: {
        more: boolean;
        next_cursor: string;
        package_list: SearchPackageListPackage[];
    }

    Type Declaration

    • more: boolean

      Indicates whether the package list is more than one page

    • next_cursor: string

      If more is true, you should pass the next_cursor in the next request as cursor

    • package_list: SearchPackageListPackage[]

      The list of packages

    result?: {
        more: boolean;
        next_cursor: string;
        package_list: SearchPackageListPackage[];
    }

    Type Declaration

    • more: boolean

      Indicates whether the package list is more than one page

    • next_cursor: string

      If more is true, you should pass the next_cursor in the next request as cursor

    • package_list: SearchPackageListPackage[]

      The list of packages