UNPKG

@apideck/node

Version:
28 lines (27 loc) 834 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. */ /** * Unit of measurement for employee compensation. * @export * @enum {string} */ export declare enum PaymentUnit { hour = "hour", week = "week", month = "month", year = "year", paycheck = "paycheck", other = "other" } export declare function PaymentUnitFromJSON(json: any): PaymentUnit; export declare function PaymentUnitFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentUnit; export declare function PaymentUnitToJSON(value?: PaymentUnit | null): any;