interface UserProperty {
    _links?: GenericLinks;
    createdDate: string;
    id: string;
    key: string;
    lastModifiedDate: string;
    value: {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • UserProperty

Properties

_links?: GenericLinks
createdDate: string

datetime when the property was created such as 2022-01-01T12:00:00.111Z

id: string

a unique identifier for the user property

key: string
lastModifiedDate: string

datetime when the property was last modified such as 2022-02-01T12:00:00.111Z

value: {
    [key: string]: unknown;
}

The value of the content property.