@apideck/node
Version:
Apideck Node.js SDK
40 lines (39 loc) • 961 B
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 Tax
*/
export interface Tax {
/**
* The name of the tax.
* @type {string}
* @memberof Tax
*/
name?: string | null;
/**
* Paid by employer.
* @type {boolean}
* @memberof Tax
*/
employer?: boolean | null;
/**
* The amount of the tax.
* @type {number}
* @memberof Tax
*/
amount?: number | null;
}
export declare function TaxFromJSON(json: any): Tax;
export declare function TaxFromJSONTyped(json: any, ignoreDiscriminator: boolean): Tax;
export declare function TaxToJSON(value?: Tax | null): any;