Represents a model for updating custom data with optional tags.

interface CustomDataUpdateModel {
    CustomTag1?: string;
    CustomTag2?: string;
    CustomTag3?: string;
    CustomTag4?: string;
}

Properties

CustomTag1?: string

The value of Custom Tag 1.

CustomTag2?: string

The value of Custom Tag 2.

CustomTag3?: string

The value of Custom Tag 3.

CustomTag4?: string

The value of Custom Tag 4.