@apideck/node
Version:
Apideck Node.js SDK
37 lines (36 loc) • 1.09 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.
*/
/**
*
* @export
* @interface InvoiceItemFilter
*/
export interface InvoiceItemFilter {
/**
* The type of invoice item, indicating whether it is an inventory item, a service, or another type.
* @type {string}
* @memberof InvoiceItemFilter
*/
type?: InvoiceItemFilterType;
}
/**
* @export
* @enum {string}
*/
export declare enum InvoiceItemFilterType {
inventory = "inventory",
service = "service",
other = "other"
}
export declare function InvoiceItemFilterFromJSON(json: any): InvoiceItemFilter;
export declare function InvoiceItemFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceItemFilter;
export declare function InvoiceItemFilterToJSON(value?: InvoiceItemFilter | null): any;