@apideck/node
Version:
Apideck Node.js SDK
28 lines (27 loc) • 834 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 ApplicantsFilter
*/
export interface ApplicantsFilter {
/**
* Id of the job to filter on
* @type {string}
* @memberof ApplicantsFilter
*/
job_id?: string;
}
export declare function ApplicantsFilterFromJSON(json: any): ApplicantsFilter;
export declare function ApplicantsFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicantsFilter;
export declare function ApplicantsFilterToJSON(value?: ApplicantsFilter | null): any;