-
Notifications
You must be signed in to change notification settings - Fork 4
/
model_address_tokens_transaction_confirmed_data.go
169 lines (138 loc) · 5.24 KB
/
model_address_tokens_transaction_confirmed_data.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
/*
CryptoAPIs
Crypto APIs is a complex and innovative infrastructure layer that radically simplifies the development of any Blockchain and Crypto related applications. Organized around REST, Crypto APIs can assist both novice Bitcoin/Ethereum enthusiasts and crypto experts with the development of their blockchain applications. Crypto APIs provides unified endpoints and data, raw data, automatic tokens and coins forwardings, callback functionalities, and much more.
API version: 2021-03-20
Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package cryptoapis
import (
"encoding/json"
)
// AddressTokensTransactionConfirmedData Specifies all data, as attributes, included into the callback notification, which depends on the `event`.
type AddressTokensTransactionConfirmedData struct {
// Represents the Crypto APIs 2.0 product which sends the callback.
Product string `json:"product"`
// Defines the specific event, for which a callback subscription is set.
Event string `json:"event"`
Item AddressTokensTransactionConfirmedDataItem `json:"item"`
}
// NewAddressTokensTransactionConfirmedData instantiates a new AddressTokensTransactionConfirmedData 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 NewAddressTokensTransactionConfirmedData(product string, event string, item AddressTokensTransactionConfirmedDataItem) *AddressTokensTransactionConfirmedData {
this := AddressTokensTransactionConfirmedData{}
this.Product = product
this.Event = event
this.Item = item
return &this
}
// NewAddressTokensTransactionConfirmedDataWithDefaults instantiates a new AddressTokensTransactionConfirmedData 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 NewAddressTokensTransactionConfirmedDataWithDefaults() *AddressTokensTransactionConfirmedData {
this := AddressTokensTransactionConfirmedData{}
return &this
}
// GetProduct returns the Product field value
func (o *AddressTokensTransactionConfirmedData) GetProduct() string {
if o == nil {
var ret string
return ret
}
return o.Product
}
// GetProductOk returns a tuple with the Product field value
// and a boolean to check if the value has been set.
func (o *AddressTokensTransactionConfirmedData) GetProductOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Product, true
}
// SetProduct sets field value
func (o *AddressTokensTransactionConfirmedData) SetProduct(v string) {
o.Product = v
}
// GetEvent returns the Event field value
func (o *AddressTokensTransactionConfirmedData) GetEvent() string {
if o == nil {
var ret string
return ret
}
return o.Event
}
// GetEventOk returns a tuple with the Event field value
// and a boolean to check if the value has been set.
func (o *AddressTokensTransactionConfirmedData) GetEventOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Event, true
}
// SetEvent sets field value
func (o *AddressTokensTransactionConfirmedData) SetEvent(v string) {
o.Event = v
}
// GetItem returns the Item field value
func (o *AddressTokensTransactionConfirmedData) GetItem() AddressTokensTransactionConfirmedDataItem {
if o == nil {
var ret AddressTokensTransactionConfirmedDataItem
return ret
}
return o.Item
}
// GetItemOk returns a tuple with the Item field value
// and a boolean to check if the value has been set.
func (o *AddressTokensTransactionConfirmedData) GetItemOk() (*AddressTokensTransactionConfirmedDataItem, bool) {
if o == nil {
return nil, false
}
return &o.Item, true
}
// SetItem sets field value
func (o *AddressTokensTransactionConfirmedData) SetItem(v AddressTokensTransactionConfirmedDataItem) {
o.Item = v
}
func (o AddressTokensTransactionConfirmedData) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if true {
toSerialize["product"] = o.Product
}
if true {
toSerialize["event"] = o.Event
}
if true {
toSerialize["item"] = o.Item
}
return json.Marshal(toSerialize)
}
type NullableAddressTokensTransactionConfirmedData struct {
value *AddressTokensTransactionConfirmedData
isSet bool
}
func (v NullableAddressTokensTransactionConfirmedData) Get() *AddressTokensTransactionConfirmedData {
return v.value
}
func (v *NullableAddressTokensTransactionConfirmedData) Set(val *AddressTokensTransactionConfirmedData) {
v.value = val
v.isSet = true
}
func (v NullableAddressTokensTransactionConfirmedData) IsSet() bool {
return v.isSet
}
func (v *NullableAddressTokensTransactionConfirmedData) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableAddressTokensTransactionConfirmedData(val *AddressTokensTransactionConfirmedData) *NullableAddressTokensTransactionConfirmedData {
return &NullableAddressTokensTransactionConfirmedData{value: val, isSet: true}
}
func (v NullableAddressTokensTransactionConfirmedData) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableAddressTokensTransactionConfirmedData) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}