Interface MetaObjectParams

Legacy metadata object parameters.

interface MetaObjectParams {
    id: string;
    name: string;
    originalSystemId?: string;
    parent: string;
    propertySetIds: string[];
    propertySets?: string[];
    type: string;
}

Properties

id: string

The ID of the metadata object.

name: string

The name of the metadata object.

originalSystemId?: string

The original system ID of the metadata object.

parent: string

ID of the parent metadata object.

propertySetIds: string[]

IDs of propery sets linked to the metadata object.

propertySets?: string[]

Property sets belonging to the metadata object.

type: string

The type of the metadata object.