UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.71 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 { Raw } from './Raw'; /** * * @export * @interface GetApplicantResponse */ export interface GetApplicantResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetApplicantResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetApplicantResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetApplicantResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetApplicantResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetApplicantResponse */ operation: string; /** * * @type {Applicant} * @memberof GetApplicantResponse */ data: Applicant; /** * * @type {Raw} * @memberof GetApplicantResponse */ _raw?: Raw | null; } export declare function GetApplicantResponseFromJSON(json: any): GetApplicantResponse; export declare function GetApplicantResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApplicantResponse; export declare function GetApplicantResponseToJSON(value?: GetApplicantResponse | null): any;