UNPKG

@apideck/node

Version:
80 lines (79 loc) 2.02 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 { Applicant } from './Applicant'; import { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetApplicantsResponse */ export interface GetApplicantsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetApplicantsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetApplicantsResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetApplicantsResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetApplicantsResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetApplicantsResponse */ operation: string; /** * * @type {Array<Applicant>} * @memberof GetApplicantsResponse */ data: Array<Applicant>; /** * * @type {Raw} * @memberof GetApplicantsResponse */ _raw?: Raw | null; /** * * @type {Meta} * @memberof GetApplicantsResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetApplicantsResponse */ links?: Links; } export declare function GetApplicantsResponseFromJSON(json: any): GetApplicantsResponse; export declare function GetApplicantsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApplicantsResponse; export declare function GetApplicantsResponseToJSON(value?: GetApplicantsResponse | null): any;