wallee
Version:
TypeScript/JavaScript client for wallee
23 lines (22 loc) • 458 B
TypeScript
declare class TaxCreate {
/**
* The tax rate to be applied.
*/
'rate': number;
/**
* The name of the tax.
*/
'title': string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { TaxCreate };