/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; /** * * @export * @interface FileCreationMetadataTranscript */ export interface FileCreationMetadataTranscript { /** * * @type {string} * @memberof FileCreationMetadataTranscript */ 'key': string; } /** * Check if a given object implements the FileCreationMetadataTranscript interface. */ export function instanceOfFileCreationMetadataTranscript(value: object): value is FileCreationMetadataTranscript { if (!('key' in value) || value['key'] === undefined) return false; return true; } export function FileCreationMetadataTranscriptFromJSON(json: any): FileCreationMetadataTranscript { return FileCreationMetadataTranscriptFromJSONTyped(json, false); } export function FileCreationMetadataTranscriptFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileCreationMetadataTranscript { if (json == null) { return json; } const result = { } as FileCreationMetadataTranscript; if (json['key'] !== undefined) { result['key'] = json['key']; } return result; } export function FileCreationMetadataTranscriptToJSON(json: any): FileCreationMetadataTranscript { return FileCreationMetadataTranscriptToJSONTyped(json, false); } export function FileCreationMetadataTranscriptToJSONTyped(value?: FileCreationMetadataTranscript | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'key': value['key'], }; }