Boomi Flow Runtime Reference Documentation
    Preparing search index...

    Interface Container

    A Container provided by the API.

    interface Container {
        attributes: null | ContainerAttributes;
        children: PageElement[];
        className: null | string;
        developerName: string;
        id: string;
        isEditable: boolean;
        isEnabled: boolean;
        isVisible: boolean;
        label: null | string;
        order: number;
        outcomes: Outcome[];
        pageContainerId: null | string;
        parentId?: null | string;
        tags: null | Tag[];
        type:
            | "VERTICAL_FLOW"
            | "HORIZONTAL_FLOW"
            | "INLINE_FLOW"
            | "GROUP"
            | "CHARTS";
    }

    Hierarchy (View Summary)

    Index

    Properties

    attributes: null | ContainerAttributes
    children: PageElement[]
    className: null | string
    developerName: string
    id: string
    isEditable: boolean
    isEnabled: boolean
    isVisible: boolean
    label: null | string
    order: number

    Order within its sibling elements

    outcomes: Outcome[]
    pageContainerId: null | string
    parentId?: null | string

    The parent Container's ID. The main/root Container will have a null parentId. This is added after the response is received from the API.

    tags: null | Tag[]
    type: "VERTICAL_FLOW" | "HORIZONTAL_FLOW" | "INLINE_FLOW" | "GROUP" | "CHARTS"