UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.73 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 { Raw } from './Raw'; /** * * @export * @interface GetCommentResponse */ export interface GetCommentResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetCommentResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetCommentResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetCommentResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetCommentResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetCommentResponse */ operation: string; /** * * @type {CollectionTicketComment} * @memberof GetCommentResponse */ data: CollectionTicketComment; /** * * @type {Raw} * @memberof GetCommentResponse */ _raw?: Raw | null; } export declare function GetCommentResponseFromJSON(json: any): GetCommentResponse; export declare function GetCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentResponse; export declare function GetCommentResponseToJSON(value?: GetCommentResponse | null): any;