UNPKG

@apideck/node

Version:
47 lines (46 loc) 1.18 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. */ import { Currency } from './Currency'; /** * * @export * @interface JobSalary */ export interface JobSalary { /** * Minimum salary payable for the job role. * @type {number} * @memberof JobSalary */ min?: number; /** * Maximum salary payable for the job role. * @type {number} * @memberof JobSalary */ max?: number; /** * * @type {Currency} * @memberof JobSalary */ currency?: Currency | null; /** * * @type {string} * @memberof JobSalary */ interval?: string | null; } export declare function JobSalaryFromJSON(json: any): JobSalary; export declare function JobSalaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobSalary; export declare function JobSalaryToJSON(value?: JobSalary | null): any;