@apideck/node
Version:
Apideck Node.js SDK
27 lines (26 loc) • 854 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.
*/
/**
* Frequency of employee compensation.
* @export
* @enum {string}
*/
export declare enum PaymentFrequency {
weekly = "weekly",
biweekly = "biweekly",
monthly = "monthly",
pro_rata = "pro-rata",
other = "other"
}
export declare function PaymentFrequencyFromJSON(json: any): PaymentFrequency;
export declare function PaymentFrequencyFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentFrequency;
export declare function PaymentFrequencyToJSON(value?: PaymentFrequency | null): any;