/* 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 DocumentMetadataBlockAttributesDocumentDocumentType */ export interface DocumentMetadataBlockAttributesDocumentDocumentType { } /** * Check if a given object implements the DocumentMetadataBlockAttributesDocumentDocumentType interface. */ export function instanceOfDocumentMetadataBlockAttributesDocumentDocumentType(value: object): value is DocumentMetadataBlockAttributesDocumentDocumentType { return true; } export function DocumentMetadataBlockAttributesDocumentDocumentTypeFromJSON(json: any): DocumentMetadataBlockAttributesDocumentDocumentType { return DocumentMetadataBlockAttributesDocumentDocumentTypeFromJSONTyped(json, false); } export function DocumentMetadataBlockAttributesDocumentDocumentTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentMetadataBlockAttributesDocumentDocumentType { return json; } export function DocumentMetadataBlockAttributesDocumentDocumentTypeToJSON(json: any): DocumentMetadataBlockAttributesDocumentDocumentType { return DocumentMetadataBlockAttributesDocumentDocumentTypeToJSONTyped(json, false); } export function DocumentMetadataBlockAttributesDocumentDocumentTypeToJSONTyped(value?: DocumentMetadataBlockAttributesDocumentDocumentType | null, ignoreDiscriminator: boolean = false): any { return value; }