UNPKG

@apideck/node

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