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