TESSA Web API
    Preparing search index...

    Interface ICardMetadataCompletionOption

    Содержит информацию о варианте завершения заданий.

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

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    caption: string

    Отображаемое название для варианта завершения.

    id: string

    Идентификатор варианта завершения.

    name: string

    Имя варианта завершения.

    Methods

    • Returns boolean

    • Returns this