@adcp/client API Reference - v3.11.2
    Preparing search index...

    Interface SITerminateSessionResponse

    Confirmation of session termination

    interface SITerminateSessionResponse {
        session_id: string;
        terminated: boolean;
        acp_handoff?: {
            checkout_url?: string;
            checkout_token?: string;
            product?: {};
        };
        follow_up?: {
            action?: | "none"
            | "save_for_later"
            | "set_reminder"
            | "subscribe_updates";
            data?: {};
        };
        errors?: Error[];
        ext?: ExtensionObject;
    }
    Index

    Properties

    session_id: string

    Terminated session identifier

    terminated: boolean

    Whether session was successfully terminated

    acp_handoff?: { checkout_url?: string; checkout_token?: string; product?: {} }

    ACP checkout handoff data (for handoff_transaction)

    Type Declaration

    • Optionalcheckout_url?: string

      ACP checkout initiation URL

    • Optionalcheckout_token?: string

      Token for ACP checkout flow

    • Optionalproduct?: {}

      Product details for checkout

    follow_up?: {
        action?:
            | "none"
            | "save_for_later"
            | "set_reminder"
            | "subscribe_updates";
        data?: {};
    }

    Suggested follow-up actions

    Type Declaration

    • Optionalaction?: "none" | "save_for_later" | "set_reminder" | "subscribe_updates"
    • Optionaldata?: {}

      Data for follow-up action

    errors?: Error[]
    ext?: ExtensionObject