interface IWeb2Payload {
    message: {
        authorization: any;
        payload: unknown;
        sessionId: string;
        web2Request: IWeb2Request;
    };
}

Properties

Properties

message: {
    authorization: any;
    payload: unknown;
    sessionId: string;
    web2Request: IWeb2Request;
}