/** * 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 { CreateBookmarkRequestLocation } from './CreateBookmarkRequestLocation'; import type { FileCreationMetadata } from './FileCreationMetadata'; import type { CreateBookmarkRequestTagsInner } from './CreateBookmarkRequestTagsInner'; import type { CommentCreate } from './CommentCreate'; import type { CreateBookmarkRequestParentId } from './CreateBookmarkRequestParentId'; import type { FileCreationAttachment } from './FileCreationAttachment'; /** * * @export * @interface FileCreation */ export interface FileCreation { /** * * @type {string} * @memberof FileCreation */ 'name'?: string | null; /** * * @type {FileCreationAttachment} * @memberof FileCreation */ 'attachment': FileCreationAttachment; /** * * @type {CreateBookmarkRequestParentId} * @memberof FileCreation */ 'parentId': CreateBookmarkRequestParentId; /** * * @type {Array} * @memberof FileCreation */ 'tags'?: Array; /** * * @type {CommentCreate} * @memberof FileCreation */ 'comment'?: CommentCreate | null; /** * * @type {CreateBookmarkRequestLocation} * @memberof FileCreation */ 'location'?: CreateBookmarkRequestLocation | null; /** * * @type {string} * @memberof FileCreation */ 'url'?: string; /** * * @type {string} * @memberof FileCreation */ 'mimeType': string; /** * * @type {FileCreationMetadata} * @memberof FileCreation */ 'metadata'?: FileCreationMetadata; } /** * Check if a given object implements the FileCreation interface. */ export declare function instanceOfFileCreation(value: object): value is FileCreation; export declare function FileCreationFromJSON(json: any): FileCreation; export declare function FileCreationFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileCreation; export declare function FileCreationToJSON(json: any): FileCreation; export declare function FileCreationToJSONTyped(value?: FileCreation | null, ignoreDiscriminator?: boolean): any;