/**
 * 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 InvoiceItemsFilter
 */
export interface InvoiceItemsFilter {
    /**
     * Name of Invoice Items to search for
     * @type {string}
     * @memberof InvoiceItemsFilter
     */
    name?: string;
    /**
     * The type of invoice item, indicating whether it is an inventory item, a service, or another type.
     * @type {string}
     * @memberof InvoiceItemsFilter
     */
    type?: InvoiceItemsFilterType;
}
/**
 * @export
 * @enum {string}
 */
export declare enum InvoiceItemsFilterType {
    inventory = "inventory",
    service = "service",
    other = "other"
}
export declare function InvoiceItemsFilterFromJSON(json: any): InvoiceItemsFilter;
export declare function InvoiceItemsFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceItemsFilter;
export declare function InvoiceItemsFilterToJSON(value?: InvoiceItemsFilter | null): any;
