@grabjs/superapp-sdk
    Preparing search index...

    Type Alias GetSessionParamsResult

    Result object containing session parameters as a JSON string.

    The result field contains a JSON string that must be parsed with JSON.parse() to use as an object. Session parameters can contain primitives, base64 encoded strings, or nested objects depending on the SuperApp's configuration.

    { result: '{"userId": "123", "sessionToken": "abc"}' }
    
    type GetSessionParamsResult = {
        result: string;
    }
    Index

    Properties

    Properties

    result: string

    JSON string containing session parameters.