forked from MyPureCloud/platform-client-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subscriptionoverviewusage.go
183 lines (118 loc) · 4.5 KB
/
subscriptionoverviewusage.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Subscriptionoverviewusage
type Subscriptionoverviewusage struct {
// Name - Product charge name
Name *string `json:"name,omitempty"`
// PartNumber - Product part number
PartNumber *string `json:"partNumber,omitempty"`
// Grouping - UI grouping key
Grouping *string `json:"grouping,omitempty"`
// UnitOfMeasureType - UI unit of measure
UnitOfMeasureType *string `json:"unitOfMeasureType,omitempty"`
// UsageQuantity - Usage count for specified period
UsageQuantity *string `json:"usageQuantity,omitempty"`
// OveragePrice - Price for usage / overage charge
OveragePrice *string `json:"overagePrice"`
// PrepayQuantity - Items prepaid for specified period
PrepayQuantity *string `json:"prepayQuantity,omitempty"`
// PrepayPrice - Price for prepay charge
PrepayPrice *string `json:"prepayPrice"`
// UsageNotes - Notes about the usage/charge item
UsageNotes *string `json:"usageNotes"`
// IsCancellable - Indicates whether the item is cancellable
IsCancellable *bool `json:"isCancellable"`
// BundleQuantity - Quantity multiplier for this charge
BundleQuantity *string `json:"bundleQuantity"`
// IsThirdParty - A charge from a third party entity
IsThirdParty *bool `json:"isThirdParty"`
}
func (o *Subscriptionoverviewusage) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Subscriptionoverviewusage
return json.Marshal(&struct {
Name *string `json:"name,omitempty"`
PartNumber *string `json:"partNumber,omitempty"`
Grouping *string `json:"grouping,omitempty"`
UnitOfMeasureType *string `json:"unitOfMeasureType,omitempty"`
UsageQuantity *string `json:"usageQuantity,omitempty"`
OveragePrice *string `json:"overagePrice"`
PrepayQuantity *string `json:"prepayQuantity,omitempty"`
PrepayPrice *string `json:"prepayPrice"`
UsageNotes *string `json:"usageNotes"`
IsCancellable *bool `json:"isCancellable"`
BundleQuantity *string `json:"bundleQuantity"`
IsThirdParty *bool `json:"isThirdParty"`
*Alias
}{
Name: o.Name,
PartNumber: o.PartNumber,
Grouping: o.Grouping,
UnitOfMeasureType: o.UnitOfMeasureType,
UsageQuantity: o.UsageQuantity,
OveragePrice: o.OveragePrice,
PrepayQuantity: o.PrepayQuantity,
PrepayPrice: o.PrepayPrice,
UsageNotes: o.UsageNotes,
IsCancellable: o.IsCancellable,
BundleQuantity: o.BundleQuantity,
IsThirdParty: o.IsThirdParty,
Alias: (*Alias)(o),
})
}
func (o *Subscriptionoverviewusage) UnmarshalJSON(b []byte) error {
var SubscriptionoverviewusageMap map[string]interface{}
err := json.Unmarshal(b, &SubscriptionoverviewusageMap)
if err != nil {
return err
}
if Name, ok := SubscriptionoverviewusageMap["name"].(string); ok {
o.Name = &Name
}
if PartNumber, ok := SubscriptionoverviewusageMap["partNumber"].(string); ok {
o.PartNumber = &PartNumber
}
if Grouping, ok := SubscriptionoverviewusageMap["grouping"].(string); ok {
o.Grouping = &Grouping
}
if UnitOfMeasureType, ok := SubscriptionoverviewusageMap["unitOfMeasureType"].(string); ok {
o.UnitOfMeasureType = &UnitOfMeasureType
}
if UsageQuantity, ok := SubscriptionoverviewusageMap["usageQuantity"].(string); ok {
o.UsageQuantity = &UsageQuantity
}
if OveragePrice, ok := SubscriptionoverviewusageMap["overagePrice"].(string); ok {
o.OveragePrice = &OveragePrice
}
if PrepayQuantity, ok := SubscriptionoverviewusageMap["prepayQuantity"].(string); ok {
o.PrepayQuantity = &PrepayQuantity
}
if PrepayPrice, ok := SubscriptionoverviewusageMap["prepayPrice"].(string); ok {
o.PrepayPrice = &PrepayPrice
}
if UsageNotes, ok := SubscriptionoverviewusageMap["usageNotes"].(string); ok {
o.UsageNotes = &UsageNotes
}
if IsCancellable, ok := SubscriptionoverviewusageMap["isCancellable"].(bool); ok {
o.IsCancellable = &IsCancellable
}
if BundleQuantity, ok := SubscriptionoverviewusageMap["bundleQuantity"].(string); ok {
o.BundleQuantity = &BundleQuantity
}
if IsThirdParty, ok := SubscriptionoverviewusageMap["isThirdParty"].(bool); ok {
o.IsThirdParty = &IsThirdParty
}
return nil
}
// String returns a JSON representation of the model
func (o *Subscriptionoverviewusage) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}