/** * 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'; import type { ResourceRoot } from './ResourceRoot'; import type { UserProfilePublic } from './UserProfilePublic'; import type { WikiMetadataBlock } from './WikiMetadataBlock'; import type { ResourceThumbnail } from './ResourceThumbnail'; import type { ResourceLabel } from './ResourceLabel'; import type { ResourceTagsInner } from './ResourceTagsInner'; import type { PresignedImage } from './PresignedImage'; import type { ResourcePublishedAncestorsInner } from './ResourcePublishedAncestorsInner'; import type { AssistantChat } from './AssistantChat'; import type { ResourceParent } from './ResourceParent'; import type { ProcessingState } from './ProcessingState'; /** * * @export * @interface ResourceDetailWiki */ export interface ResourceDetailWiki { /** * * @type {string} * @memberof ResourceDetailWiki */ 'id': string; /** * * @type {string} * @memberof ResourceDetailWiki */ 'kind': ResourceDetailWikiKindEnum; /** * * @type {string} * @memberof ResourceDetailWiki */ 'mimeType': string | null; /** * * @type {string} * @memberof ResourceDetailWiki */ 'extension': string | null; /** * * @type {string} * @memberof ResourceDetailWiki */ 'name': string | null; /** * * @type {string} * @memberof ResourceDetailWiki */ 'description': string | null; /** * * @type {number} * @memberof ResourceDetailWiki */ 'size': number | null; /** * * @type {string} * @memberof ResourceDetailWiki */ 'url': string; /** * * @type {CommentWithAuthor} * @memberof ResourceDetailWiki */ 'commentPinned': CommentWithAuthor | null; /** * * @type {ResourceLabel} * @memberof ResourceDetailWiki */ 'label': ResourceLabel | null; /** * * @type {ResourceParent} * @memberof ResourceDetailWiki */ 'parent': ResourceParent | null; /** * * @type {PresignedImage} * @memberof ResourceDetailWiki */ 'cover': PresignedImage | null; /** * * @type {UserProfilePublic} * @memberof ResourceDetailWiki */ 'user': UserProfilePublic | null; /** * * @type {ResourceRoot} * @memberof ResourceDetailWiki */ 'root': ResourceRoot | null; /** * * @type {ProcessingState} * @memberof ResourceDetailWiki */ 'stateProcessing': ProcessingState; /** * * @type {string} * @memberof ResourceDetailWiki */ 'originUrl': string | null; /** * * @type {Array} * @memberof ResourceDetailWiki */ 'tags': Array; /** * * @type {Array} * @memberof ResourceDetailWiki */ 'chats': Array; /** * * @type {ResourceThumbnail} * @memberof ResourceDetailWiki */ 'thumbnail': ResourceThumbnail | null; /** * * @type {string} * @memberof ResourceDetailWiki */ 'fileUrl': string | null; /** * * @type {{ [key: string]: object | null; }} * @memberof ResourceDetailWiki */ 'preferences': { [key: string]: object | null; } | null; /** * * @type {boolean} * @memberof ResourceDetailWiki */ 'isPasswordProtected'?: boolean; /** * * @type {boolean} * @memberof ResourceDetailWiki */ 'isLocked'?: boolean; /** * * @type {Array} * @memberof ResourceDetailWiki */ 'publishedAncestors'?: Array; /** * * @type {string} * @memberof ResourceDetailWiki */ 'createdAt': string; /** * * @type {string} * @memberof ResourceDetailWiki */ 'modifiedAt': string; /** * * @type {WikiMetadataBlock} * @memberof ResourceDetailWiki */ 'data': WikiMetadataBlock; } /** * @export */ export declare const ResourceDetailWikiKindEnum: { readonly Wiki: "wiki"; }; export type ResourceDetailWikiKindEnum = typeof ResourceDetailWikiKindEnum[keyof typeof ResourceDetailWikiKindEnum]; /** * Check if a given object implements the ResourceDetailWiki interface. */ export declare function instanceOfResourceDetailWiki(value: object): value is ResourceDetailWiki; export declare function ResourceDetailWikiFromJSON(json: any): ResourceDetailWiki; export declare function ResourceDetailWikiFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceDetailWiki; export declare function ResourceDetailWikiToJSON(json: any): ResourceDetailWiki; export declare function ResourceDetailWikiToJSONTyped(value?: ResourceDetailWiki | null, ignoreDiscriminator?: boolean): any;