TESSA Web API
    Preparing search index...

    Interface ICardMetadataSectionReference

    Содержит ссылку на секцию в метаинформации.

    interface ICardMetadataSectionReference {
        id: string;
        name: string;
        clone(): ICardMetadataSectionReference;
        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