/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { CommentWithAuthor } from './CommentWithAuthor'; /** * * @export * @interface ListResourceComments200ResponseData */ export interface ListResourceComments200ResponseData { /** * * @type {Array} * @memberof ListResourceComments200ResponseData */ 'comments': Array; } /** * Check if a given object implements the ListResourceComments200ResponseData interface. */ export declare function instanceOfListResourceComments200ResponseData(value: object): value is ListResourceComments200ResponseData; export declare function ListResourceComments200ResponseDataFromJSON(json: any): ListResourceComments200ResponseData; export declare function ListResourceComments200ResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResourceComments200ResponseData; export declare function ListResourceComments200ResponseDataToJSON(json: any): ListResourceComments200ResponseData; export declare function ListResourceComments200ResponseDataToJSONTyped(value?: ListResourceComments200ResponseData | null, ignoreDiscriminator?: boolean): any;