TESSA Web API
    Preparing search index...

    Interface ICardNewStrategyContext

    Контекст операции по созданию карточки.

    interface ICardNewStrategyContext {
        card: null | Card;
        cardTypeId: string;
        cardTypeMetadata: null | ICardTypeMetadata;
        generalMetadata: ICardMetadata;
        mode: CardNewMode;
        sectionRows: null | StorageMap<CardRow, IStorage>;
        validationResult: null | IValidationResultBuilder;
        initCard(): void;
        initResponse(response: CardNewResponse): void;
    }

    Implemented by

    Index

    Properties

    card: null | Card
    cardTypeId: string
    cardTypeMetadata: null | ICardTypeMetadata
    generalMetadata: ICardMetadata
    sectionRows: null | StorageMap<CardRow, IStorage>
    validationResult: null | IValidationResultBuilder

    Methods

    • Returns void

    • Parameters

      Returns void