wallee
Version:
TypeScript/JavaScript client for wallee
31 lines (30 loc) • 634 B
TypeScript
declare class WalletType {
/**
* The localized description of the object.
*/
'description'?: {
[]: string;
};
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The localized name of the object.
*/
'name'?: {
[]: string;
};
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { WalletType };