UNPKG

@apideck/node

Version:
34 lines (33 loc) 903 B
/** * 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 Deduction */ export interface Deduction { /** * The name of the deduction. * @type {string} * @memberof Deduction */ name?: string | null; /** * The amount deducted. * @type {number} * @memberof Deduction */ amount?: number | null; } export declare function DeductionFromJSON(json: any): Deduction; export declare function DeductionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Deduction; export declare function DeductionToJSON(value?: Deduction | null): any;