UNPKG

@apideck/node

Version:
65 lines (64 loc) 1.98 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 { PassThroughBody } from './PassThroughBody'; /** * * @export * @interface CollectionTicketComment */ export interface CollectionTicketComment { /** * A unique identifier for an object. * @type {string} * @memberof CollectionTicketComment */ readonly id?: string; /** * Body of the comment * @type {string} * @memberof CollectionTicketComment */ body?: string | null; /** * When custom mappings are configured on the resource, the result is included here. * @type {object} * @memberof CollectionTicketComment */ readonly custom_mappings?: object | null; /** * The user who created the object. * @type {string} * @memberof CollectionTicketComment */ readonly created_by?: string | null; /** * The date and time when the object was last updated. * @type {Date} * @memberof CollectionTicketComment */ readonly updated_at?: Date | null; /** * The date and time when the object was created. * @type {Date} * @memberof CollectionTicketComment */ readonly created_at?: Date | null; /** * * @type {PassThroughBody} * @memberof CollectionTicketComment */ pass_through?: PassThroughBody; } export declare function CollectionTicketCommentFromJSON(json: any): CollectionTicketComment; export declare function CollectionTicketCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): CollectionTicketComment; export declare function CollectionTicketCommentToJSON(value?: CollectionTicketComment | null): any;