UNPKG

@apideck/node

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