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 { Links } from './Links'; import { Message } from './Message'; import { Meta } from './Meta'; import { Raw } from './Raw'; /** * * @export * @interface GetMessagesResponse */ export interface GetMessagesResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetMessagesResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetMessagesResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetMessagesResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetMessagesResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetMessagesResponse */ operation: string; /** * * @type {Array<Message>} * @memberof GetMessagesResponse */ data: Array<Message>; /** * * @type {Raw} * @memberof GetMessagesResponse */ _raw?: Raw | null; /** * * @type {Meta} * @memberof GetMessagesResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetMessagesResponse */ links?: Links; } export declare function GetMessagesResponseFromJSON(json: any): GetMessagesResponse; export declare function GetMessagesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMessagesResponse; export declare function GetMessagesResponseToJSON(value?: GetMessagesResponse | null): any;