TypeAlias.Event_Wallet
type Event_Wallet = {
application: string;
count: number;
createdAt: string;
id: string;
subject: "wallet";
type: "create" | "update" | "delete";
updatedAt: string;
user: string | null;
};
Type Declaration
| Name | Type |
|---|---|
application | string |
count | number |
createdAt | string |
id | string |
subject | "wallet" |
type | "create" |
updatedAt | string |
user | string |