-
Notifications
You must be signed in to change notification settings - Fork 13
/
conversationmessagingtorecipient.go
123 lines (83 loc) · 2.92 KB
/
conversationmessagingtorecipient.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
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Conversationmessagingtorecipient - Information about the recipient the message is sent to.
type Conversationmessagingtorecipient struct {
// Nickname - Nickname or display name of the recipient.
Nickname *string `json:"nickname,omitempty"`
// Id - The recipient ID specific to the provider.
Id *string `json:"id,omitempty"`
// IdType - The recipient ID type. This is used to indicate the format used for the ID.
IdType *string `json:"idType,omitempty"`
// Image - URL of an image that represents the recipient.
Image *string `json:"image,omitempty"`
// FirstName - First name of the recipient.
FirstName *string `json:"firstName,omitempty"`
// LastName - Last name of the recipient.
LastName *string `json:"lastName,omitempty"`
// Email - E-mail address of the recipient.
Email *string `json:"email,omitempty"`
}
func (o *Conversationmessagingtorecipient) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Conversationmessagingtorecipient
return json.Marshal(&struct {
Nickname *string `json:"nickname,omitempty"`
Id *string `json:"id,omitempty"`
IdType *string `json:"idType,omitempty"`
Image *string `json:"image,omitempty"`
FirstName *string `json:"firstName,omitempty"`
LastName *string `json:"lastName,omitempty"`
Email *string `json:"email,omitempty"`
*Alias
}{
Nickname: o.Nickname,
Id: o.Id,
IdType: o.IdType,
Image: o.Image,
FirstName: o.FirstName,
LastName: o.LastName,
Email: o.Email,
Alias: (*Alias)(o),
})
}
func (o *Conversationmessagingtorecipient) UnmarshalJSON(b []byte) error {
var ConversationmessagingtorecipientMap map[string]interface{}
err := json.Unmarshal(b, &ConversationmessagingtorecipientMap)
if err != nil {
return err
}
if Nickname, ok := ConversationmessagingtorecipientMap["nickname"].(string); ok {
o.Nickname = &Nickname
}
if Id, ok := ConversationmessagingtorecipientMap["id"].(string); ok {
o.Id = &Id
}
if IdType, ok := ConversationmessagingtorecipientMap["idType"].(string); ok {
o.IdType = &IdType
}
if Image, ok := ConversationmessagingtorecipientMap["image"].(string); ok {
o.Image = &Image
}
if FirstName, ok := ConversationmessagingtorecipientMap["firstName"].(string); ok {
o.FirstName = &FirstName
}
if LastName, ok := ConversationmessagingtorecipientMap["lastName"].(string); ok {
o.LastName = &LastName
}
if Email, ok := ConversationmessagingtorecipientMap["email"].(string); ok {
o.Email = &Email
}
return nil
}
// String returns a JSON representation of the model
func (o *Conversationmessagingtorecipient) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}