interface Attribute {
    $CreationOptions?: AttributeCreationOptions;
    $ID: string;
    $Type: "DomainModels$Attribute";
    dataStorageGuid: string;
    documentation: string;
    name: string;
    type: AttributeType;
    value: ValueType;
    delete(): void;
    getContainer(): Entity;
}

Hierarchy (view full)

Properties

$CreationOptions?: AttributeCreationOptions

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

dataStorageGuid: string
documentation: string
name: string
value: ValueType

Methods

  • Returns void