UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

33 lines (32 loc) 1.04 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. */ /** * * @export * @interface InvoiceSettings */ export interface InvoiceSettings { /** * * @type {number} * @memberof InvoiceSettings */ defaultNetD?: number | null; } /** * Check if a given object implements the InvoiceSettings interface. */ export declare function instanceOfInvoiceSettings(value: object): value is InvoiceSettings; export declare function InvoiceSettingsFromJSON(json: any): InvoiceSettings; export declare function InvoiceSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceSettings; export declare function InvoiceSettingsToJSON(json: any): InvoiceSettings; export declare function InvoiceSettingsToJSONTyped(value?: InvoiceSettings | null, ignoreDiscriminator?: boolean): any;