wallee
Version:
TypeScript/JavaScript client for wallee
23 lines (22 loc) • 512 B
TypeScript
declare class LineItemAttribute {
/**
* The label describing the line item attribute.
*/
'label'?: string;
/**
* The value of the line item attribute.
*/
'value'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { LineItemAttribute };