/** * 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 { VideoMetadataBlock } from './VideoMetadataBlock'; import type { ResourceRoot } from './ResourceRoot'; import type { UserProfilePublic } from './UserProfilePublic'; 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 ResourceDetailVideo */ export interface ResourceDetailVideo { /** * * @type {string} * @memberof ResourceDetailVideo */ 'id': string; /** * * @type {string} * @memberof ResourceDetailVideo */ 'kind': ResourceDetailVideoKindEnum; /** * * @type {string} * @memberof ResourceDetailVideo */ 'mimeType': string | null; /** * * @type {string} * @memberof ResourceDetailVideo */ 'extension': string | null; /** * * @type {string} * @memberof ResourceDetailVideo */ 'name': string | null; /** * * @type {string} * @memberof ResourceDetailVideo */ 'description': string | null; /** * * @type {number} * @memberof ResourceDetailVideo */ 'size': number | null; /** * * @type {string} * @memberof ResourceDetailVideo */ 'url': string; /** * * @type {CommentWithAuthor} * @memberof ResourceDetailVideo */ 'commentPinned': CommentWithAuthor | null; /** * * @type {ResourceLabel} * @memberof ResourceDetailVideo */ 'label': ResourceLabel | null; /** * * @type {ResourceParent} * @memberof ResourceDetailVideo */ 'parent': ResourceParent | null; /** * * @type {PresignedImage} * @memberof ResourceDetailVideo */ 'cover': PresignedImage | null; /** * * @type {UserProfilePublic} * @memberof ResourceDetailVideo */ 'user': UserProfilePublic | null; /** * * @type {ResourceRoot} * @memberof ResourceDetailVideo */ 'root': ResourceRoot | null; /** * * @type {ProcessingState} * @memberof ResourceDetailVideo */ 'stateProcessing': ProcessingState; /** * * @type {string} * @memberof ResourceDetailVideo */ 'originUrl': string | null; /** * * @type {Array} * @memberof ResourceDetailVideo */ 'tags': Array; /** * * @type {Array} * @memberof ResourceDetailVideo */ 'chats': Array; /** * * @type {ResourceThumbnail} * @memberof ResourceDetailVideo */ 'thumbnail': ResourceThumbnail | null; /** * * @type {string} * @memberof ResourceDetailVideo */ 'fileUrl': string | null; /** * * @type {{ [key: string]: object | null; }} * @memberof ResourceDetailVideo */ 'preferences': { [key: string]: object | null; } | null; /** * * @type {boolean} * @memberof ResourceDetailVideo */ 'isPasswordProtected'?: boolean; /** * * @type {boolean} * @memberof ResourceDetailVideo */ 'isLocked'?: boolean; /** * * @type {Array} * @memberof ResourceDetailVideo */ 'publishedAncestors'?: Array; /** * * @type {string} * @memberof ResourceDetailVideo */ 'createdAt': string; /** * * @type {string} * @memberof ResourceDetailVideo */ 'modifiedAt': string; /** * * @type {VideoMetadataBlock} * @memberof ResourceDetailVideo */ 'data': VideoMetadataBlock; } /** * @export */ export declare const ResourceDetailVideoKindEnum: { readonly Video: "video"; }; export type ResourceDetailVideoKindEnum = typeof ResourceDetailVideoKindEnum[keyof typeof ResourceDetailVideoKindEnum]; /** * Check if a given object implements the ResourceDetailVideo interface. */ export declare function instanceOfResourceDetailVideo(value: object): value is ResourceDetailVideo; export declare function ResourceDetailVideoFromJSON(json: any): ResourceDetailVideo; export declare function ResourceDetailVideoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceDetailVideo; export declare function ResourceDetailVideoToJSON(json: any): ResourceDetailVideo; export declare function ResourceDetailVideoToJSONTyped(value?: ResourceDetailVideo | null, ignoreDiscriminator?: boolean): any;