/** * 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. */ /** * * @export * @interface ListResourceComments404Response */ export interface ListResourceComments404Response { /** * * @type {string} * @memberof ListResourceComments404Response */ 'title': ListResourceComments404ResponseTitleEnum; /** * * @type {string} * @memberof ListResourceComments404Response */ 'detail': ListResourceComments404ResponseDetailEnum; } /** * @export */ export declare const ListResourceComments404ResponseTitleEnum: { readonly NotFound: "Not Found"; }; export type ListResourceComments404ResponseTitleEnum = typeof ListResourceComments404ResponseTitleEnum[keyof typeof ListResourceComments404ResponseTitleEnum]; /** * @export */ export declare const ListResourceComments404ResponseDetailEnum: { readonly ResourceNotFound: "resource_not_found"; }; export type ListResourceComments404ResponseDetailEnum = typeof ListResourceComments404ResponseDetailEnum[keyof typeof ListResourceComments404ResponseDetailEnum]; /** * Check if a given object implements the ListResourceComments404Response interface. */ export declare function instanceOfListResourceComments404Response(value: object): value is ListResourceComments404Response; export declare function ListResourceComments404ResponseFromJSON(json: any): ListResourceComments404Response; export declare function ListResourceComments404ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResourceComments404Response; export declare function ListResourceComments404ResponseToJSON(json: any): ListResourceComments404Response; export declare function ListResourceComments404ResponseToJSONTyped(value?: ListResourceComments404Response | null, ignoreDiscriminator?: boolean): any;