@selldone/sdk-storefront
Version:
A TypeScript SDK to connect to your shop and build a fully functional storefront and website by simply developing a frontend web application. All backend operations are seamlessly managed by the serverless Selldone solution.
29 lines (28 loc) • 684 B
TypeScript
import { Currency } from "../../enums/payment/Currency";
export interface AgencyWallet {
/**
* Unique identifier for the wallet entry.
*/
id: number;
/**
* ID of the associated agency.
*/
agency_id: number;
/**
* Current balance of the wallet.
*/
balance: number;
/**
* Currency type used in the wallet. This is not changeable after creation.
*/
currency: keyof typeof Currency;
/**
* The date and time when the record was last updated.
*/
updated_at: Date;
/**
* The date and time when the record was created.
*/
created_at: Date;
}
export declare namespace AgencyWallet { }