UNPKG

@apideck/node

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