TypeAlias.AgentWalletBudget
type AgentWalletBudget = {
currency: string;
day: {
cap: string | null;
spent: string;
};
month: {
cap: string | null;
spent: string;
};
week: {
cap: string | null;
spent: string;
};
};
Type Declaration
| Name | Type |
|---|---|
currency | string |
day | { cap: string |
day.cap | string |
day.spent | string |
month | { cap: string |
month.cap | string |
month.spent | string |
week | { cap: string |
week.cap | string |
week.spent | string |