Interface IBlock

interface IBlock {
    code: string;
    condition?: ICondition;
    conditionControls?: IControlConditions;
    cssClasses?: string;
    fields: IField[];
    fullWidth?: boolean;
    id?: string;
    removeIf?: string[];
    repeatable?: boolean;
    repeatableCount?: number;
    repeatablePostfixFieldId?: string;
    repeatingUnitFooter?: boolean;
    repeatingUnitHeader?: boolean;
    state?: IState;
    templateId: string;
}

Properties

code: string
condition?: ICondition
conditionControls?: IControlConditions
cssClasses?: string
fields: IField[]
fullWidth?: boolean
id?: string
removeIf?: string[]
repeatable?: boolean
repeatableCount?: number
repeatablePostfixFieldId?: string
repeatingUnitFooter?: boolean
repeatingUnitHeader?: boolean
state?: IState
templateId: string