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