UNPKG

@apideck/node

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