/**
 * 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 LinkedInvoiceItem
 */
export interface LinkedInvoiceItem {
    /**
     * ID of the linked item. A reference to the [invoice item](https://developers.apideck.com/apis/accounting/reference#tag/Invoice-Items) that was used to create this line item
     * @type {string}
     * @memberof LinkedInvoiceItem
     */
    id?: string | null;
    /**
     * User defined item code
     * @type {string}
     * @memberof LinkedInvoiceItem
     */
    code?: string | null;
    /**
     * User defined item name
     * @type {string}
     * @memberof LinkedInvoiceItem
     */
    name?: string | null;
}
export declare function LinkedInvoiceItemFromJSON(json: any): LinkedInvoiceItem;
export declare function LinkedInvoiceItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkedInvoiceItem;
export declare function LinkedInvoiceItemToJSON(value?: LinkedInvoiceItem | null): any;
