Boomi Flow Runtime Reference Documentation
    Preparing search index...

    Interface Container

    A Container provided by the API.

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

    Hierarchy (View Summary)

    Index

    Properties

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

    Order within its sibling elements

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

    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: Tag[] | null
    type: "VERTICAL_FLOW" | "HORIZONTAL_FLOW" | "INLINE_FLOW" | "GROUP" | "CHARTS"