-
Notifications
You must be signed in to change notification settings - Fork 18
/
properties.go
38 lines (32 loc) · 1000 Bytes
/
properties.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package posthog
// This type is used to represent properties in messages that support it.
// It is a free-form object so the application can set any value it sees fit but
// a few helper method are defined to make it easier to instantiate properties with
// common fields.
// Here's a quick example of how this type is meant to be used:
//
// posthog.Page{
// DistinctId: "0123456789",
// Properties: posthog.NewProperties()
// .Set("revenue", 10.0)
// .Set("currency", "USD"),
// }
type Properties map[string]interface{}
func NewProperties() Properties {
return make(Properties, 10)
}
func (p Properties) Set(name string, value interface{}) Properties {
p[name] = value
return p
}
// Merge adds the properties from the provided `props` into the receiver `p`.
// If a property in `props` already exists in `p`, its value will be overwritten.
func (p Properties) Merge(props Properties) Properties {
if props == nil {
return p
}
for k, v := range props {
p[k] = v
}
return p
}