Type Alias EventObjectAttributeValueType

EventObjectAttributeValueType: {
    [key: string]:
        | string
        | boolean
        | number
        | URL
        | Date
        | (string | EventObjectAttributeValueType)[]
        | EventObjectAttributeValueType;
}