-
Notifications
You must be signed in to change notification settings - Fork 13
/
v2conversationmessagetypingeventforusertopicconversationmessagecontent.go
142 lines (97 loc) · 5.13 KB
/
v2conversationmessagetypingeventforusertopicconversationmessagecontent.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// V2conversationmessagetypingeventforusertopicconversationmessagecontent
type V2conversationmessagetypingeventforusertopicconversationmessagecontent struct {
// ContentType
ContentType *string `json:"contentType,omitempty"`
// Location
Location *V2conversationmessagetypingeventforusertopicconversationcontentlocation `json:"location,omitempty"`
// Story
Story *V2conversationmessagetypingeventforusertopicconversationcontentstory `json:"story,omitempty"`
// Attachment
Attachment *V2conversationmessagetypingeventforusertopicconversationcontentattachment `json:"attachment,omitempty"`
// QuickReply
QuickReply *V2conversationmessagetypingeventforusertopicconversationcontentquickreply `json:"quickReply,omitempty"`
// Template
Template *V2conversationmessagetypingeventforusertopicconversationcontentnotificationtemplate `json:"template,omitempty"`
// ButtonResponse
ButtonResponse *V2conversationmessagetypingeventforusertopicconversationcontentbuttonresponse `json:"buttonResponse,omitempty"`
// Generic
Generic *V2conversationmessagetypingeventforusertopicconversationcontentgeneric `json:"generic,omitempty"`
}
func (o *V2conversationmessagetypingeventforusertopicconversationmessagecontent) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias V2conversationmessagetypingeventforusertopicconversationmessagecontent
return json.Marshal(&struct {
ContentType *string `json:"contentType,omitempty"`
Location *V2conversationmessagetypingeventforusertopicconversationcontentlocation `json:"location,omitempty"`
Story *V2conversationmessagetypingeventforusertopicconversationcontentstory `json:"story,omitempty"`
Attachment *V2conversationmessagetypingeventforusertopicconversationcontentattachment `json:"attachment,omitempty"`
QuickReply *V2conversationmessagetypingeventforusertopicconversationcontentquickreply `json:"quickReply,omitempty"`
Template *V2conversationmessagetypingeventforusertopicconversationcontentnotificationtemplate `json:"template,omitempty"`
ButtonResponse *V2conversationmessagetypingeventforusertopicconversationcontentbuttonresponse `json:"buttonResponse,omitempty"`
Generic *V2conversationmessagetypingeventforusertopicconversationcontentgeneric `json:"generic,omitempty"`
*Alias
}{
ContentType: o.ContentType,
Location: o.Location,
Story: o.Story,
Attachment: o.Attachment,
QuickReply: o.QuickReply,
Template: o.Template,
ButtonResponse: o.ButtonResponse,
Generic: o.Generic,
Alias: (*Alias)(o),
})
}
func (o *V2conversationmessagetypingeventforusertopicconversationmessagecontent) UnmarshalJSON(b []byte) error {
var V2conversationmessagetypingeventforusertopicconversationmessagecontentMap map[string]interface{}
err := json.Unmarshal(b, &V2conversationmessagetypingeventforusertopicconversationmessagecontentMap)
if err != nil {
return err
}
if ContentType, ok := V2conversationmessagetypingeventforusertopicconversationmessagecontentMap["contentType"].(string); ok {
o.ContentType = &ContentType
}
if Location, ok := V2conversationmessagetypingeventforusertopicconversationmessagecontentMap["location"].(map[string]interface{}); ok {
LocationString, _ := json.Marshal(Location)
json.Unmarshal(LocationString, &o.Location)
}
if Story, ok := V2conversationmessagetypingeventforusertopicconversationmessagecontentMap["story"].(map[string]interface{}); ok {
StoryString, _ := json.Marshal(Story)
json.Unmarshal(StoryString, &o.Story)
}
if Attachment, ok := V2conversationmessagetypingeventforusertopicconversationmessagecontentMap["attachment"].(map[string]interface{}); ok {
AttachmentString, _ := json.Marshal(Attachment)
json.Unmarshal(AttachmentString, &o.Attachment)
}
if QuickReply, ok := V2conversationmessagetypingeventforusertopicconversationmessagecontentMap["quickReply"].(map[string]interface{}); ok {
QuickReplyString, _ := json.Marshal(QuickReply)
json.Unmarshal(QuickReplyString, &o.QuickReply)
}
if Template, ok := V2conversationmessagetypingeventforusertopicconversationmessagecontentMap["template"].(map[string]interface{}); ok {
TemplateString, _ := json.Marshal(Template)
json.Unmarshal(TemplateString, &o.Template)
}
if ButtonResponse, ok := V2conversationmessagetypingeventforusertopicconversationmessagecontentMap["buttonResponse"].(map[string]interface{}); ok {
ButtonResponseString, _ := json.Marshal(ButtonResponse)
json.Unmarshal(ButtonResponseString, &o.ButtonResponse)
}
if Generic, ok := V2conversationmessagetypingeventforusertopicconversationmessagecontentMap["generic"].(map[string]interface{}); ok {
GenericString, _ := json.Marshal(Generic)
json.Unmarshal(GenericString, &o.Generic)
}
return nil
}
// String returns a JSON representation of the model
func (o *V2conversationmessagetypingeventforusertopicconversationmessagecontent) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}