-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel_payment_intent_response_splits_inner.go
More file actions
270 lines (224 loc) · 7.94 KB
/
model_payment_intent_response_splits_inner.go
File metadata and controls
270 lines (224 loc) · 7.94 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/*
Secure API
Secure API
API version: 2.3
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package openapi
import (
"encoding/json"
)
// checks if the PaymentIntentResponseSplitsInner type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &PaymentIntentResponseSplitsInner{}
// PaymentIntentResponseSplitsInner struct for PaymentIntentResponseSplitsInner
type PaymentIntentResponseSplitsInner struct {
VirtualAccount *string `json:"virtualAccount,omitempty"`
Amount *float32 `json:"amount,omitempty"`
Reference *string `json:"reference,omitempty"`
AccountType *string `json:"accountType,omitempty"`
ChargeIndicator *bool `json:"chargeIndicator,omitempty"`
}
// NewPaymentIntentResponseSplitsInner instantiates a new PaymentIntentResponseSplitsInner object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewPaymentIntentResponseSplitsInner() *PaymentIntentResponseSplitsInner {
this := PaymentIntentResponseSplitsInner{}
return &this
}
// NewPaymentIntentResponseSplitsInnerWithDefaults instantiates a new PaymentIntentResponseSplitsInner object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewPaymentIntentResponseSplitsInnerWithDefaults() *PaymentIntentResponseSplitsInner {
this := PaymentIntentResponseSplitsInner{}
return &this
}
// GetVirtualAccount returns the VirtualAccount field value if set, zero value otherwise.
func (o *PaymentIntentResponseSplitsInner) GetVirtualAccount() string {
if o == nil || IsNil(o.VirtualAccount) {
var ret string
return ret
}
return *o.VirtualAccount
}
// GetVirtualAccountOk returns a tuple with the VirtualAccount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentIntentResponseSplitsInner) GetVirtualAccountOk() (*string, bool) {
if o == nil || IsNil(o.VirtualAccount) {
return nil, false
}
return o.VirtualAccount, true
}
// HasVirtualAccount returns a boolean if a field has been set.
func (o *PaymentIntentResponseSplitsInner) HasVirtualAccount() bool {
if o != nil && !IsNil(o.VirtualAccount) {
return true
}
return false
}
// SetVirtualAccount gets a reference to the given string and assigns it to the VirtualAccount field.
func (o *PaymentIntentResponseSplitsInner) SetVirtualAccount(v string) {
o.VirtualAccount = &v
}
// GetAmount returns the Amount field value if set, zero value otherwise.
func (o *PaymentIntentResponseSplitsInner) GetAmount() float32 {
if o == nil || IsNil(o.Amount) {
var ret float32
return ret
}
return *o.Amount
}
// GetAmountOk returns a tuple with the Amount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentIntentResponseSplitsInner) GetAmountOk() (*float32, bool) {
if o == nil || IsNil(o.Amount) {
return nil, false
}
return o.Amount, true
}
// HasAmount returns a boolean if a field has been set.
func (o *PaymentIntentResponseSplitsInner) HasAmount() bool {
if o != nil && !IsNil(o.Amount) {
return true
}
return false
}
// SetAmount gets a reference to the given float32 and assigns it to the Amount field.
func (o *PaymentIntentResponseSplitsInner) SetAmount(v float32) {
o.Amount = &v
}
// GetReference returns the Reference field value if set, zero value otherwise.
func (o *PaymentIntentResponseSplitsInner) GetReference() string {
if o == nil || IsNil(o.Reference) {
var ret string
return ret
}
return *o.Reference
}
// GetReferenceOk returns a tuple with the Reference field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentIntentResponseSplitsInner) GetReferenceOk() (*string, bool) {
if o == nil || IsNil(o.Reference) {
return nil, false
}
return o.Reference, true
}
// HasReference returns a boolean if a field has been set.
func (o *PaymentIntentResponseSplitsInner) HasReference() bool {
if o != nil && !IsNil(o.Reference) {
return true
}
return false
}
// SetReference gets a reference to the given string and assigns it to the Reference field.
func (o *PaymentIntentResponseSplitsInner) SetReference(v string) {
o.Reference = &v
}
// GetAccountType returns the AccountType field value if set, zero value otherwise.
func (o *PaymentIntentResponseSplitsInner) GetAccountType() string {
if o == nil || IsNil(o.AccountType) {
var ret string
return ret
}
return *o.AccountType
}
// GetAccountTypeOk returns a tuple with the AccountType field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentIntentResponseSplitsInner) GetAccountTypeOk() (*string, bool) {
if o == nil || IsNil(o.AccountType) {
return nil, false
}
return o.AccountType, true
}
// HasAccountType returns a boolean if a field has been set.
func (o *PaymentIntentResponseSplitsInner) HasAccountType() bool {
if o != nil && !IsNil(o.AccountType) {
return true
}
return false
}
// SetAccountType gets a reference to the given string and assigns it to the AccountType field.
func (o *PaymentIntentResponseSplitsInner) SetAccountType(v string) {
o.AccountType = &v
}
// GetChargeIndicator returns the ChargeIndicator field value if set, zero value otherwise.
func (o *PaymentIntentResponseSplitsInner) GetChargeIndicator() bool {
if o == nil || IsNil(o.ChargeIndicator) {
var ret bool
return ret
}
return *o.ChargeIndicator
}
// GetChargeIndicatorOk returns a tuple with the ChargeIndicator field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaymentIntentResponseSplitsInner) GetChargeIndicatorOk() (*bool, bool) {
if o == nil || IsNil(o.ChargeIndicator) {
return nil, false
}
return o.ChargeIndicator, true
}
// HasChargeIndicator returns a boolean if a field has been set.
func (o *PaymentIntentResponseSplitsInner) HasChargeIndicator() bool {
if o != nil && !IsNil(o.ChargeIndicator) {
return true
}
return false
}
// SetChargeIndicator gets a reference to the given bool and assigns it to the ChargeIndicator field.
func (o *PaymentIntentResponseSplitsInner) SetChargeIndicator(v bool) {
o.ChargeIndicator = &v
}
func (o PaymentIntentResponseSplitsInner) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o PaymentIntentResponseSplitsInner) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.VirtualAccount) {
toSerialize["virtualAccount"] = o.VirtualAccount
}
if !IsNil(o.Amount) {
toSerialize["amount"] = o.Amount
}
if !IsNil(o.Reference) {
toSerialize["reference"] = o.Reference
}
if !IsNil(o.AccountType) {
toSerialize["accountType"] = o.AccountType
}
if !IsNil(o.ChargeIndicator) {
toSerialize["chargeIndicator"] = o.ChargeIndicator
}
return toSerialize, nil
}
type NullablePaymentIntentResponseSplitsInner struct {
value *PaymentIntentResponseSplitsInner
isSet bool
}
func (v NullablePaymentIntentResponseSplitsInner) Get() *PaymentIntentResponseSplitsInner {
return v.value
}
func (v *NullablePaymentIntentResponseSplitsInner) Set(val *PaymentIntentResponseSplitsInner) {
v.value = val
v.isSet = true
}
func (v NullablePaymentIntentResponseSplitsInner) IsSet() bool {
return v.isSet
}
func (v *NullablePaymentIntentResponseSplitsInner) Unset() {
v.value = nil
v.isSet = false
}
func NewNullablePaymentIntentResponseSplitsInner(val *PaymentIntentResponseSplitsInner) *NullablePaymentIntentResponseSplitsInner {
return &NullablePaymentIntentResponseSplitsInner{value: val, isSet: true}
}
func (v NullablePaymentIntentResponseSplitsInner) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullablePaymentIntentResponseSplitsInner) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}