Skip to content

Commit

Permalink
Merge pull request #241 from manicminer/additional-userflowattribute-…
Browse files Browse the repository at this point in the history
…types

Support additional types for UserflowAttributeDataType
  • Loading branch information
manicminer authored Apr 12, 2023
2 parents 3360e7d + 0c03f8f commit 86818c8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions msgraph/valuetypes.go
Original file line number Diff line number Diff line change
Expand Up @@ -785,9 +785,11 @@ const (
type UserflowAttributeDataType = string

const (
UserflowAttributeDataTypeString UserflowAttributeDataType = "string"
UserflowAttributeDataTypeBoolean UserflowAttributeDataType = "boolean"
UserflowAttributeDataTypeInt64 UserflowAttributeDataType = "int64"
UserflowAttributeDataTypeString UserflowAttributeDataType = "string"
UserflowAttributeDataTypeBoolean UserflowAttributeDataType = "boolean"
UserflowAttributeDataTypeInt64 UserflowAttributeDataType = "int64"
UserflowAttributeDataTypeStringCollection UserflowAttributeDataType = "stringCollection"
UserflowAttributeDataTypeDateTime UserflowAttributeDataType = "dateTime"
)

type IndexType = string
Expand Down

0 comments on commit 86818c8

Please sign in to comment.