@apideck/node
Version:
Apideck Node.js SDK
40 lines (39 loc) • 1.06 kB
TypeScript
/**
* 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 Benefit
*/
export interface Benefit {
/**
* The name of the benefit.
* @type {string}
* @memberof Benefit
*/
name?: string | null;
/**
* The amount deducted for benefit.
* @type {number}
* @memberof Benefit
*/
employee_deduction?: number | null;
/**
* The amount of employer contribution.
* @type {number}
* @memberof Benefit
*/
employer_contribution?: number | null;
}
export declare function BenefitFromJSON(json: any): Benefit;
export declare function BenefitFromJSONTyped(json: any, ignoreDiscriminator: boolean): Benefit;
export declare function BenefitToJSON(value?: Benefit | null): any;