-
Notifications
You must be signed in to change notification settings - Fork 13
/
queueconversationeventtopicerrordetails.go
125 lines (85 loc) · 3.59 KB
/
queueconversationeventtopicerrordetails.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
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Queueconversationeventtopicerrordetails - Detailed information about an error response.
type Queueconversationeventtopicerrordetails struct {
// Status - The HTTP status code for this message (400, 401, 403, 404, 500, etc.
Status *int `json:"status,omitempty"`
// Code - A code unique to this error.
Code *string `json:"code,omitempty"`
// Message - Friendly description of this error.
Message *string `json:"message,omitempty"`
// MessageWithParams - This is the same as message except it uses template fields for variable replacement. For instance: 'User {username} was not found'
MessageWithParams *string `json:"messageWithParams,omitempty"`
// MessageParams - Used in conjunction with messageWithParams. These are the template parameters. For instance: UserParam.key = 'username', UserParam.value = 'john.doe'
MessageParams *map[string]string `json:"messageParams,omitempty"`
// ContextId - The correlation Id or context Id for this message. If left blank the Public API will look at the HTTP response header 'ININ-Correlation-Id' instead.
ContextId *string `json:"contextId,omitempty"`
// Uri
Uri *string `json:"uri,omitempty"`
}
func (o *Queueconversationeventtopicerrordetails) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Queueconversationeventtopicerrordetails
return json.Marshal(&struct {
Status *int `json:"status,omitempty"`
Code *string `json:"code,omitempty"`
Message *string `json:"message,omitempty"`
MessageWithParams *string `json:"messageWithParams,omitempty"`
MessageParams *map[string]string `json:"messageParams,omitempty"`
ContextId *string `json:"contextId,omitempty"`
Uri *string `json:"uri,omitempty"`
*Alias
}{
Status: o.Status,
Code: o.Code,
Message: o.Message,
MessageWithParams: o.MessageWithParams,
MessageParams: o.MessageParams,
ContextId: o.ContextId,
Uri: o.Uri,
Alias: (*Alias)(o),
})
}
func (o *Queueconversationeventtopicerrordetails) UnmarshalJSON(b []byte) error {
var QueueconversationeventtopicerrordetailsMap map[string]interface{}
err := json.Unmarshal(b, &QueueconversationeventtopicerrordetailsMap)
if err != nil {
return err
}
if Status, ok := QueueconversationeventtopicerrordetailsMap["status"].(float64); ok {
StatusInt := int(Status)
o.Status = &StatusInt
}
if Code, ok := QueueconversationeventtopicerrordetailsMap["code"].(string); ok {
o.Code = &Code
}
if Message, ok := QueueconversationeventtopicerrordetailsMap["message"].(string); ok {
o.Message = &Message
}
if MessageWithParams, ok := QueueconversationeventtopicerrordetailsMap["messageWithParams"].(string); ok {
o.MessageWithParams = &MessageWithParams
}
if MessageParams, ok := QueueconversationeventtopicerrordetailsMap["messageParams"].(map[string]interface{}); ok {
MessageParamsString, _ := json.Marshal(MessageParams)
json.Unmarshal(MessageParamsString, &o.MessageParams)
}
if ContextId, ok := QueueconversationeventtopicerrordetailsMap["contextId"].(string); ok {
o.ContextId = &ContextId
}
if Uri, ok := QueueconversationeventtopicerrordetailsMap["uri"].(string); ok {
o.Uri = &Uri
}
return nil
}
// String returns a JSON representation of the model
func (o *Queueconversationeventtopicerrordetails) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}