A unit is a container of elements, it can not contain other units.

interface ProjectConversion {
    $Component: "mendix.ProjectConversionApi";
    $CreationOptions?: unknown;
    $ID: string;
    $Type: "Projects$ProjectConversion";
    markers: OneTimeConversionMarker[];
    addOneTimeConversionMarker(options: OneTimeConversionMarkerCreationOptions): Promise<OneTimeConversionMarker>;
    getOneTimeConversionMarker(name: string): OneTimeConversionMarker;
}

Hierarchy (view full)

Properties

$Component
$CreationOptions?: unknown

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

Methods