TESSA Web API
    Preparing search index...

    Interface ICardMetadataRecord

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

    interface ICardMetadataRecord {
        values: IStorage;
        clone(): ICardMetadataRecord;
        deserializeFromStorage(
            storage: IStorage,
            context?: StorageSerializableContext,
        ): this;
        isSealed(): boolean;
        seal(): this;
        serializeToStorage(
            storage?: IStorage,
            context?: StorageSerializableContext,
        ): IStorage;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    values: IStorage

    Получает или задаёт значение поля в строке по имени колонки.

    Methods

    • Returns boolean

    • Returns this