-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathmodel_sweep_counterparty.go
199 lines (165 loc) · 6.97 KB
/
model_sweep_counterparty.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
/*
Configuration webhooks
API version: 2
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package configurationwebhook
import (
"encoding/json"
"github.com/adyen/adyen-go-api-library/v18/src/common"
)
// checks if the SweepCounterparty type satisfies the MappedNullable interface at compile time
var _ common.MappedNullable = &SweepCounterparty{}
// SweepCounterparty struct for SweepCounterparty
type SweepCounterparty struct {
// The unique identifier of the destination or source [balance account](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/post/balanceAccounts__resParam_id). > If you are updating the counterparty from a transfer instrument to a balance account, set `transferInstrumentId` to **null**.
BalanceAccountId *string `json:"balanceAccountId,omitempty"`
// The merchant account that will be the source of funds. You can only use this parameter with sweeps of `type` **pull** and if you are processing payments with Adyen.
MerchantAccount *string `json:"merchantAccount,omitempty"`
// The unique identifier of the destination or source [transfer instrument](https://docs.adyen.com/api-explorer/legalentity/latest/post/transferInstruments#responses-200-id) depending on the sweep `type` . To set up automated top-up sweeps to balance accounts in your [marketplace](https://docs.adyen.com/marketplaces/top-up-balance-account/#before-you-begin) or [platform](https://docs.adyen.com/platforms/top-up-balance-account/#before-you-begin), use this parameter in combination with a `merchantAccount` and a sweep `type` of **pull**. Top-up sweeps start a direct debit request from the source transfer instrument. Contact Adyen Support to enable this feature.> If you are updating the counterparty from a balance account to a transfer instrument, set `balanceAccountId` to **null**.
TransferInstrumentId *string `json:"transferInstrumentId,omitempty"`
}
// NewSweepCounterparty instantiates a new SweepCounterparty 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 NewSweepCounterparty() *SweepCounterparty {
this := SweepCounterparty{}
return &this
}
// NewSweepCounterpartyWithDefaults instantiates a new SweepCounterparty 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 NewSweepCounterpartyWithDefaults() *SweepCounterparty {
this := SweepCounterparty{}
return &this
}
// GetBalanceAccountId returns the BalanceAccountId field value if set, zero value otherwise.
func (o *SweepCounterparty) GetBalanceAccountId() string {
if o == nil || common.IsNil(o.BalanceAccountId) {
var ret string
return ret
}
return *o.BalanceAccountId
}
// GetBalanceAccountIdOk returns a tuple with the BalanceAccountId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SweepCounterparty) GetBalanceAccountIdOk() (*string, bool) {
if o == nil || common.IsNil(o.BalanceAccountId) {
return nil, false
}
return o.BalanceAccountId, true
}
// HasBalanceAccountId returns a boolean if a field has been set.
func (o *SweepCounterparty) HasBalanceAccountId() bool {
if o != nil && !common.IsNil(o.BalanceAccountId) {
return true
}
return false
}
// SetBalanceAccountId gets a reference to the given string and assigns it to the BalanceAccountId field.
func (o *SweepCounterparty) SetBalanceAccountId(v string) {
o.BalanceAccountId = &v
}
// GetMerchantAccount returns the MerchantAccount field value if set, zero value otherwise.
func (o *SweepCounterparty) GetMerchantAccount() string {
if o == nil || common.IsNil(o.MerchantAccount) {
var ret string
return ret
}
return *o.MerchantAccount
}
// GetMerchantAccountOk returns a tuple with the MerchantAccount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SweepCounterparty) GetMerchantAccountOk() (*string, bool) {
if o == nil || common.IsNil(o.MerchantAccount) {
return nil, false
}
return o.MerchantAccount, true
}
// HasMerchantAccount returns a boolean if a field has been set.
func (o *SweepCounterparty) HasMerchantAccount() bool {
if o != nil && !common.IsNil(o.MerchantAccount) {
return true
}
return false
}
// SetMerchantAccount gets a reference to the given string and assigns it to the MerchantAccount field.
func (o *SweepCounterparty) SetMerchantAccount(v string) {
o.MerchantAccount = &v
}
// GetTransferInstrumentId returns the TransferInstrumentId field value if set, zero value otherwise.
func (o *SweepCounterparty) GetTransferInstrumentId() string {
if o == nil || common.IsNil(o.TransferInstrumentId) {
var ret string
return ret
}
return *o.TransferInstrumentId
}
// GetTransferInstrumentIdOk returns a tuple with the TransferInstrumentId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SweepCounterparty) GetTransferInstrumentIdOk() (*string, bool) {
if o == nil || common.IsNil(o.TransferInstrumentId) {
return nil, false
}
return o.TransferInstrumentId, true
}
// HasTransferInstrumentId returns a boolean if a field has been set.
func (o *SweepCounterparty) HasTransferInstrumentId() bool {
if o != nil && !common.IsNil(o.TransferInstrumentId) {
return true
}
return false
}
// SetTransferInstrumentId gets a reference to the given string and assigns it to the TransferInstrumentId field.
func (o *SweepCounterparty) SetTransferInstrumentId(v string) {
o.TransferInstrumentId = &v
}
func (o SweepCounterparty) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o SweepCounterparty) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !common.IsNil(o.BalanceAccountId) {
toSerialize["balanceAccountId"] = o.BalanceAccountId
}
if !common.IsNil(o.MerchantAccount) {
toSerialize["merchantAccount"] = o.MerchantAccount
}
if !common.IsNil(o.TransferInstrumentId) {
toSerialize["transferInstrumentId"] = o.TransferInstrumentId
}
return toSerialize, nil
}
type NullableSweepCounterparty struct {
value *SweepCounterparty
isSet bool
}
func (v NullableSweepCounterparty) Get() *SweepCounterparty {
return v.value
}
func (v *NullableSweepCounterparty) Set(val *SweepCounterparty) {
v.value = val
v.isSet = true
}
func (v NullableSweepCounterparty) IsSet() bool {
return v.isSet
}
func (v *NullableSweepCounterparty) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableSweepCounterparty(val *SweepCounterparty) *NullableSweepCounterparty {
return &NullableSweepCounterparty{value: val, isSet: true}
}
func (v NullableSweepCounterparty) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableSweepCounterparty) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}