CustomEventResponse

@torque-labs/sdk


@torque-labs/sdk / CustomEventResponse

Type Alias: CustomEventResponse

type CustomEventResponse = {
  eventName: string;
  fields: {
     description: string | null;
     fieldName: string;
     label: string | null;
     type: "string" | "boolean" | "number";
    }[];
 } & {
  createdAt: Date;
  id: string;
  updatedAt: Date;
};

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

Type declaration

Name
Type

eventName

string

fields

{ description: string | null; fieldName: string; label: string | null; type: "string" | "boolean" | "number"; }[]

Type declaration

Name
Type

createdAt

Date

id

string

updatedAt

Date

Last updated