UNPKG

@apideck/node

Version:
46 lines (45 loc) 1.2 kB
/** * 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 LinkedTaxRate */ export interface LinkedTaxRate { /** * The ID of the object. * @type {string} * @memberof LinkedTaxRate */ id?: string | null; /** * Tax rate code * @type {string} * @memberof LinkedTaxRate */ readonly code?: string | null; /** * Name of the tax rate * @type {string} * @memberof LinkedTaxRate */ readonly name?: string | null; /** * Rate of the tax rate * @type {number} * @memberof LinkedTaxRate */ rate?: number | null; } export declare function LinkedTaxRateFromJSON(json: any): LinkedTaxRate; export declare function LinkedTaxRateFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkedTaxRate; export declare function LinkedTaxRateToJSON(value?: LinkedTaxRate | null): any;