TESSA Web API
    Preparing search index...

    Interface ICardMetadataNormalizationSource

    Содержит информацию о справочнике нормализации.

    interface ICardMetadataNormalizationSource {
        id: string;
        name: string;
        clone(): ICardMetadataNormalizationSource;
        deserializeFromStorage(
            storage: IStorage,
            context?: StorageSerializableContext,
        ): this;
        isSealed(): boolean;
        seal(): this;
        serializeToStorage(
            storage?: IStorage,
            context?: StorageSerializableContext,
        ): IStorage;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    id: string

    Идентификатор справочника нормализации.

    name: string

    Уникальное имя справочника нормализации.

    Methods

    • Returns boolean

    • Returns this