@apideck/node
Version:
Apideck Node.js SDK
47 lines (46 loc) • 1.41 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { LinkedTaxRate } from './LinkedTaxRate';
/**
*
* @export
* @interface InvoiceItemSalesDetails
*/
export interface InvoiceItemSalesDetails {
/**
*
* @type {number}
* @memberof InvoiceItemSalesDetails
*/
unit_price?: number | null;
/**
* Description of the unit type the item is sold as, ie: kg, hour.
* @type {string}
* @memberof InvoiceItemSalesDetails
*/
unit_of_measure?: string | null;
/**
* Amounts are including tax
* @type {boolean}
* @memberof InvoiceItemSalesDetails
*/
tax_inclusive?: boolean | null;
/**
*
* @type {LinkedTaxRate}
* @memberof InvoiceItemSalesDetails
*/
tax_rate?: LinkedTaxRate;
}
export declare function InvoiceItemSalesDetailsFromJSON(json: any): InvoiceItemSalesDetails;
export declare function InvoiceItemSalesDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceItemSalesDetails;
export declare function InvoiceItemSalesDetailsToJSON(value?: InvoiceItemSalesDetails | null): any;