Variable AccountDeletedEventStructConst

AccountDeletedEventStruct: Struct<{
    method: "notify:accountDeleted";
    params: {
        id: string;
    };
}, {
    method: Struct<"notify:accountDeleted", "notify:accountDeleted">;
    params: Struct<{
        id: string;
    }, {
        id: Struct<string, null>;
    }>;
}> = ...

Type declaration

  • method: "notify:accountDeleted"
  • params: {
        id: string;
    }
    • id: string

      Deleted account ID.

Type declaration

  • method: Struct<"notify:accountDeleted", "notify:accountDeleted">
  • params: Struct<{
        id: string;
    }, {
        id: Struct<string, null>;
    }>