UNPKG

@apideck/node

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