/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { TicketCommentObjectAsResponse } from "../definitions/TicketCommentObjectAsResponse"; export interface TicketCommentsResponseAsResponse { comments?: Array; meta?: { after_cursor?: string; before_cursor?: string; has_more?: boolean; }; links?: { next: string; prev: string; }; count?: number; next_page?: string; previous_page?: string; } //# sourceMappingURL=TicketCommentsResponseAsResponse.d.ts.map