UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

46 lines (45 loc) 1.5 kB
/** * OpenPay API * super charge your subscription management. * * The version of the OpenAPI document: 1.2.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { TaxIdSetting } from './TaxIdSetting'; /** * * @export * @interface CustomerInvoiceSettings */ export interface CustomerInvoiceSettings { /** * The tax IDs of the customer. * @type {Array<TaxIdSetting>} * @memberof CustomerInvoiceSettings */ customerTaxIds?: Array<TaxIdSetting>; /** * * @type {number} * @memberof CustomerInvoiceSettings */ defaultNetD?: number | null; /** * * @type {boolean} * @memberof CustomerInvoiceSettings */ emailReceiptOnPaid?: boolean | null; } /** * Check if a given object implements the CustomerInvoiceSettings interface. */ export declare function instanceOfCustomerInvoiceSettings(value: object): value is CustomerInvoiceSettings; export declare function CustomerInvoiceSettingsFromJSON(json: any): CustomerInvoiceSettings; export declare function CustomerInvoiceSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerInvoiceSettings; export declare function CustomerInvoiceSettingsToJSON(json: any): CustomerInvoiceSettings; export declare function CustomerInvoiceSettingsToJSONTyped(value?: CustomerInvoiceSettings | null, ignoreDiscriminator?: boolean): any;