-
Notifications
You must be signed in to change notification settings - Fork 13
/
conversationmessageeventtopicjourneycustomer.go
63 lines (48 loc) · 1.93 KB
/
conversationmessageeventtopicjourneycustomer.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Conversationmessageeventtopicjourneycustomer - A subset of the Journey System's customer data at a point-in-time (for external linkage and internal usage/context)
type Conversationmessageeventtopicjourneycustomer struct {
// Id - An ID of a customer within the Journey System at a point-in-time. Note that a customer entity can have multiple customerIds based on the stitching process. Depending on the context within the PureCloud conversation, this may or may not be mutable.
Id *string `json:"id,omitempty"`
// IdType - The type of the customerId within the Journey System (e.g. cookie).
IdType *string `json:"idType,omitempty"`
}
func (o *Conversationmessageeventtopicjourneycustomer) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Conversationmessageeventtopicjourneycustomer
return json.Marshal(&struct {
Id *string `json:"id,omitempty"`
IdType *string `json:"idType,omitempty"`
*Alias
}{
Id: o.Id,
IdType: o.IdType,
Alias: (*Alias)(o),
})
}
func (o *Conversationmessageeventtopicjourneycustomer) UnmarshalJSON(b []byte) error {
var ConversationmessageeventtopicjourneycustomerMap map[string]interface{}
err := json.Unmarshal(b, &ConversationmessageeventtopicjourneycustomerMap)
if err != nil {
return err
}
if Id, ok := ConversationmessageeventtopicjourneycustomerMap["id"].(string); ok {
o.Id = &Id
}
if IdType, ok := ConversationmessageeventtopicjourneycustomerMap["idType"].(string); ok {
o.IdType = &IdType
}
return nil
}
// String returns a JSON representation of the model
func (o *Conversationmessageeventtopicjourneycustomer) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}