ActionPostWithCallbackResponse

@torque-labs/sdk


@torque-labs/sdk / ActionPostWithCallbackResponse

Type Alias: ActionPostWithCallbackResponse

type ActionPostWithCallbackResponse = {
  links:   | {
     next: {
        href: string;
        type: "post";
       };
    }
     | null;
  transaction: string;
  type: "post" | "transaction" | "message" | "external-link";
};

Defined in: sdk/src/types/schemaTypes.ts:1956

Properties

optional links: 
  | {
  next: {
     href: string;
     type: "post";
    };
 }
  | null;

Defined in: sdk/src/types/schemaTypes.ts:1959


transaction

transaction: string;

Defined in: sdk/src/types/schemaTypes.ts:1958


type

type: "post" | "transaction" | "message" | "external-link";

Defined in: sdk/src/types/schemaTypes.ts:1957

Last updated