AppActionProps: AppActionCategory & {
    description?: string;
    name: string;
    sys: AppActionSys;
    type?: "endpoint" | "function";
    url: string;
}

Type declaration

  • Optionaldescription?: string

    Human readable description of the action

  • name: string

    Human readable name for the action

  • sys: AppActionSys

    System metadata

  • Optionaltype?: "endpoint" | "function"
  • url: string

    Url that will be called when the action is invoked