-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathmodel_payment_failure_notification_content.go
137 lines (114 loc) · 4.33 KB
/
model_payment_failure_notification_content.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
/*
* Adyen for Platforms: Notifications
*
* The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification. For more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).
*
* API version: 6
* Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package platformsnotificationevents
import (
"encoding/json"
)
// PaymentFailureNotificationContent struct for PaymentFailureNotificationContent
type PaymentFailureNotificationContent struct {
// Missing or invalid fields that caused the payment error.
ErrorFields []ErrorFieldType `json:"errorFields"`
ErrorMessage Message `json:"errorMessage"`
}
// NewPaymentFailureNotificationContent instantiates a new PaymentFailureNotificationContent 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 NewPaymentFailureNotificationContent(errorFields []ErrorFieldType, errorMessage Message) *PaymentFailureNotificationContent {
this := PaymentFailureNotificationContent{}
this.ErrorFields = errorFields
this.ErrorMessage = errorMessage
return &this
}
// NewPaymentFailureNotificationContentWithDefaults instantiates a new PaymentFailureNotificationContent 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 NewPaymentFailureNotificationContentWithDefaults() *PaymentFailureNotificationContent {
this := PaymentFailureNotificationContent{}
return &this
}
// GetErrorFields returns the ErrorFields field value
func (o *PaymentFailureNotificationContent) GetErrorFields() []ErrorFieldType {
if o == nil {
var ret []ErrorFieldType
return ret
}
return o.ErrorFields
}
// GetErrorFieldsOk returns a tuple with the ErrorFields field value
// and a boolean to check if the value has been set.
func (o *PaymentFailureNotificationContent) GetErrorFieldsOk() (*[]ErrorFieldType, bool) {
if o == nil {
return nil, false
}
return &o.ErrorFields, true
}
// SetErrorFields sets field value
func (o *PaymentFailureNotificationContent) SetErrorFields(v []ErrorFieldType) {
o.ErrorFields = v
}
// GetErrorMessage returns the ErrorMessage field value
func (o *PaymentFailureNotificationContent) GetErrorMessage() Message {
if o == nil {
var ret Message
return ret
}
return o.ErrorMessage
}
// GetErrorMessageOk returns a tuple with the ErrorMessage field value
// and a boolean to check if the value has been set.
func (o *PaymentFailureNotificationContent) GetErrorMessageOk() (*Message, bool) {
if o == nil {
return nil, false
}
return &o.ErrorMessage, true
}
// SetErrorMessage sets field value
func (o *PaymentFailureNotificationContent) SetErrorMessage(v Message) {
o.ErrorMessage = v
}
func (o PaymentFailureNotificationContent) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if true {
toSerialize["errorFields"] = o.ErrorFields
}
if true {
toSerialize["errorMessage"] = o.ErrorMessage
}
return json.Marshal(toSerialize)
}
type NullablePaymentFailureNotificationContent struct {
value *PaymentFailureNotificationContent
isSet bool
}
func (v NullablePaymentFailureNotificationContent) Get() *PaymentFailureNotificationContent {
return v.value
}
func (v *NullablePaymentFailureNotificationContent) Set(val *PaymentFailureNotificationContent) {
v.value = val
v.isSet = true
}
func (v NullablePaymentFailureNotificationContent) IsSet() bool {
return v.isSet
}
func (v *NullablePaymentFailureNotificationContent) Unset() {
v.value = nil
v.isSet = false
}
func NewNullablePaymentFailureNotificationContent(val *PaymentFailureNotificationContent) *NullablePaymentFailureNotificationContent {
return &NullablePaymentFailureNotificationContent{value: val, isSet: true}
}
func (v NullablePaymentFailureNotificationContent) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullablePaymentFailureNotificationContent) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}