UNPKG

@apideck/node

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