-
Notifications
You must be signed in to change notification settings - Fork 58
/
model_direct_debit_channel_properties_bank_account.go
235 lines (193 loc) · 7.79 KB
/
model_direct_debit_channel_properties_bank_account.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
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
/*
Payment Requests
This API is used for Payment Requests
API version: 1.45.2
*/
package payment_request
import (
"encoding/json"
utils "github.com/xendit/xendit-go/v4/utils"
)
// checks if the DirectDebitChannelPropertiesBankAccount type satisfies the MappedNullable interface at compile time
var _ utils.MappedNullable = &DirectDebitChannelPropertiesBankAccount{}
// DirectDebitChannelPropertiesBankAccount Direct Debit Bank Account Channel Properties
type DirectDebitChannelPropertiesBankAccount struct {
SuccessReturnUrl *string `json:"success_return_url,omitempty"`
FailureReturnUrl *string `json:"failure_return_url,omitempty"`
MobileNumber *string `json:"mobile_number,omitempty"`
IdentityDocumentNumber *string `json:"identity_document_number,omitempty"`
}
// NewDirectDebitChannelPropertiesBankAccount instantiates a new DirectDebitChannelPropertiesBankAccount 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 NewDirectDebitChannelPropertiesBankAccount() *DirectDebitChannelPropertiesBankAccount {
this := DirectDebitChannelPropertiesBankAccount{}
return &this
}
// NewDirectDebitChannelPropertiesBankAccountWithDefaults instantiates a new DirectDebitChannelPropertiesBankAccount 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 NewDirectDebitChannelPropertiesBankAccountWithDefaults() *DirectDebitChannelPropertiesBankAccount {
this := DirectDebitChannelPropertiesBankAccount{}
return &this
}
// GetSuccessReturnUrl returns the SuccessReturnUrl field value if set, zero value otherwise.
func (o *DirectDebitChannelPropertiesBankAccount) GetSuccessReturnUrl() string {
if o == nil || utils.IsNil(o.SuccessReturnUrl) {
var ret string
return ret
}
return *o.SuccessReturnUrl
}
// GetSuccessReturnUrlOk returns a tuple with the SuccessReturnUrl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DirectDebitChannelPropertiesBankAccount) GetSuccessReturnUrlOk() (*string, bool) {
if o == nil || utils.IsNil(o.SuccessReturnUrl) {
return nil, false
}
return o.SuccessReturnUrl, true
}
// HasSuccessReturnUrl returns a boolean if a field has been set.
func (o *DirectDebitChannelPropertiesBankAccount) HasSuccessReturnUrl() bool {
if o != nil && !utils.IsNil(o.SuccessReturnUrl) {
return true
}
return false
}
// SetSuccessReturnUrl gets a reference to the given string and assigns it to the SuccessReturnUrl field.
func (o *DirectDebitChannelPropertiesBankAccount) SetSuccessReturnUrl(v string) {
o.SuccessReturnUrl = &v
}
// GetFailureReturnUrl returns the FailureReturnUrl field value if set, zero value otherwise.
func (o *DirectDebitChannelPropertiesBankAccount) GetFailureReturnUrl() string {
if o == nil || utils.IsNil(o.FailureReturnUrl) {
var ret string
return ret
}
return *o.FailureReturnUrl
}
// GetFailureReturnUrlOk returns a tuple with the FailureReturnUrl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DirectDebitChannelPropertiesBankAccount) GetFailureReturnUrlOk() (*string, bool) {
if o == nil || utils.IsNil(o.FailureReturnUrl) {
return nil, false
}
return o.FailureReturnUrl, true
}
// HasFailureReturnUrl returns a boolean if a field has been set.
func (o *DirectDebitChannelPropertiesBankAccount) HasFailureReturnUrl() bool {
if o != nil && !utils.IsNil(o.FailureReturnUrl) {
return true
}
return false
}
// SetFailureReturnUrl gets a reference to the given string and assigns it to the FailureReturnUrl field.
func (o *DirectDebitChannelPropertiesBankAccount) SetFailureReturnUrl(v string) {
o.FailureReturnUrl = &v
}
// GetMobileNumber returns the MobileNumber field value if set, zero value otherwise.
func (o *DirectDebitChannelPropertiesBankAccount) GetMobileNumber() string {
if o == nil || utils.IsNil(o.MobileNumber) {
var ret string
return ret
}
return *o.MobileNumber
}
// GetMobileNumberOk returns a tuple with the MobileNumber field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DirectDebitChannelPropertiesBankAccount) GetMobileNumberOk() (*string, bool) {
if o == nil || utils.IsNil(o.MobileNumber) {
return nil, false
}
return o.MobileNumber, true
}
// HasMobileNumber returns a boolean if a field has been set.
func (o *DirectDebitChannelPropertiesBankAccount) HasMobileNumber() bool {
if o != nil && !utils.IsNil(o.MobileNumber) {
return true
}
return false
}
// SetMobileNumber gets a reference to the given string and assigns it to the MobileNumber field.
func (o *DirectDebitChannelPropertiesBankAccount) SetMobileNumber(v string) {
o.MobileNumber = &v
}
// GetIdentityDocumentNumber returns the IdentityDocumentNumber field value if set, zero value otherwise.
func (o *DirectDebitChannelPropertiesBankAccount) GetIdentityDocumentNumber() string {
if o == nil || utils.IsNil(o.IdentityDocumentNumber) {
var ret string
return ret
}
return *o.IdentityDocumentNumber
}
// GetIdentityDocumentNumberOk returns a tuple with the IdentityDocumentNumber field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DirectDebitChannelPropertiesBankAccount) GetIdentityDocumentNumberOk() (*string, bool) {
if o == nil || utils.IsNil(o.IdentityDocumentNumber) {
return nil, false
}
return o.IdentityDocumentNumber, true
}
// HasIdentityDocumentNumber returns a boolean if a field has been set.
func (o *DirectDebitChannelPropertiesBankAccount) HasIdentityDocumentNumber() bool {
if o != nil && !utils.IsNil(o.IdentityDocumentNumber) {
return true
}
return false
}
// SetIdentityDocumentNumber gets a reference to the given string and assigns it to the IdentityDocumentNumber field.
func (o *DirectDebitChannelPropertiesBankAccount) SetIdentityDocumentNumber(v string) {
o.IdentityDocumentNumber = &v
}
func (o DirectDebitChannelPropertiesBankAccount) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o DirectDebitChannelPropertiesBankAccount) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !utils.IsNil(o.SuccessReturnUrl) {
toSerialize["success_return_url"] = o.SuccessReturnUrl
}
if !utils.IsNil(o.FailureReturnUrl) {
toSerialize["failure_return_url"] = o.FailureReturnUrl
}
if !utils.IsNil(o.MobileNumber) {
toSerialize["mobile_number"] = o.MobileNumber
}
if !utils.IsNil(o.IdentityDocumentNumber) {
toSerialize["identity_document_number"] = o.IdentityDocumentNumber
}
return toSerialize, nil
}
type NullableDirectDebitChannelPropertiesBankAccount struct {
value *DirectDebitChannelPropertiesBankAccount
isSet bool
}
func (v NullableDirectDebitChannelPropertiesBankAccount) Get() *DirectDebitChannelPropertiesBankAccount {
return v.value
}
func (v *NullableDirectDebitChannelPropertiesBankAccount) Set(val *DirectDebitChannelPropertiesBankAccount) {
v.value = val
v.isSet = true
}
func (v NullableDirectDebitChannelPropertiesBankAccount) IsSet() bool {
return v.isSet
}
func (v *NullableDirectDebitChannelPropertiesBankAccount) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableDirectDebitChannelPropertiesBankAccount(val *DirectDebitChannelPropertiesBankAccount) *NullableDirectDebitChannelPropertiesBankAccount {
return &NullableDirectDebitChannelPropertiesBankAccount{value: val, isSet: true}
}
func (v NullableDirectDebitChannelPropertiesBankAccount) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableDirectDebitChannelPropertiesBankAccount) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}