Variable common_pending_action_attemptConst

common_pending_action_attempt: ZodObject<extendShape<{
    action_attempt_id: ZodString;
    status: ZodEnum<["pending", "success", "error"]>;
}, {
    error: ZodNull;
    result: ZodNull;
    status: ZodLiteral<"pending">;
}>, "strip", ZodTypeAny, {
    action_attempt_id: string;
    error: null;
    result: null;
    status: "pending";
}, {
    action_attempt_id: string;
    error: null;
    result: null;
    status: "pending";
}> = ...

Type declaration

  • action_attempt_id: string
  • error: null
  • result: null
  • status: "pending"

Type declaration

  • action_attempt_id: string
  • error: null
  • result: null
  • status: "pending"