wallee
Version:
TypeScript/JavaScript client for wallee
28 lines (27 loc) • 995 B
TypeScript
/**
*
* @export
* @interface LineItemAttribute
*/
export interface LineItemAttribute {
/**
* The label describing the line item attribute.
* @type {string}
* @memberof LineItemAttribute
*/
readonly label?: string;
/**
* The value of the line item attribute.
* @type {string}
* @memberof LineItemAttribute
*/
readonly value?: string;
}
/**
* Check if a given object implements the LineItemAttribute interface.
*/
export declare function instanceOfLineItemAttribute(value: object): value is LineItemAttribute;
export declare function LineItemAttributeFromJSON(json: any): LineItemAttribute;
export declare function LineItemAttributeFromJSONTyped(json: any, ignoreDiscriminator: boolean): LineItemAttribute;
export declare function LineItemAttributeToJSON(json: any): LineItemAttribute;
export declare function LineItemAttributeToJSONTyped(value?: Omit<LineItemAttribute, 'label' | 'value'> | null, ignoreDiscriminator?: boolean): any;