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

    Interface GetLostPushMessageResponse

    Response for the get lost push message API

    interface GetLostPushMessageResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            has_next_page: boolean;
            last_message_id: number;
            push_message_list: PushMessage[];
        };
        warning?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    error: string

    Error code if any error occurred

    message: string

    Error message if any error occurred

    request_id: string

    The identifier for an API request for error tracking

    response: {
        has_next_page: boolean;
        last_message_id: number;
        push_message_list: PushMessage[];
    }

    Type Declaration

    • has_next_page: boolean

      Indicates whether there are more than 100 lost push messages to be consumed. If true, you need to continue calling to get the remaining lost messages

    • last_message_id: number

      Specifies the end entry of data returned in the current call

    • push_message_list: PushMessage[]

      Returns the earliest 100 lost push messages that were lost within 3 days of the current time and not confirmed to have been consumed

    warning?: string

    Indicate warning details if any warning occurred