-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_task_callbacks.go
173 lines (142 loc) · 8.52 KB
/
model_task_callbacks.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
/*
finAPI Web Form 2.0
The following pages give you some general information on how to use our APIs.<br/>The actual API services documentation then follows further below. You can use the menu to jump between API sections.<br/><br/>This page has a built-in HTTP(S) client, so you can test the services directly from within this page, by filling in the request parameters and/or body in the respective services, and then hitting the TRY button. Note that you need to be authorized to make a successful API call. To authorize, refer to the '<a target='_blank' href='https://docs.finapi.io/?product=access#tag--Authorization'>Authorization</a>' section of Access, or in case you already have a valid user token, just use the QUICK AUTH on the left.<br/>Please also remember that all user management functions should be looked up in <a target='_blank' href='https://docs.finapi.io/?product=access'>Access</a>.<br/><br/>You should also check out the <a target='_blank' href='https://documentation.finapi.io/webform/'>Web Form 2.0 Public Documentation</a> as well as <a target='_blank' href='https://documentation.finapi.io/access/'>Access Public Documentation</a> for more information. If you need any help with the API, contact <a href='mailto:[email protected]'>[email protected]</a>.<br/><h2 id=\"general-information\">General information</h2><h3 id=\"general-request-ids\"><strong>Request IDs</strong></h3>With any API call, you can pass a request ID via a header with name \"X-Request-Id\". The request ID can be an arbitrary string with up to 255 characters. Passing a longer string will result in an error.<br/><br/>If you don't pass a request ID for a call, finAPI will generate a random ID internally.<br/><br/>The request ID is always returned back in the response of a service, as a header with name \"X-Request-Id\".<br/><br/>We highly recommend to always pass a (preferably unique) request ID, and include it into your client application logs whenever you make a request or receive a response(especially in the case of an error response). finAPI is also logging request IDs on its end. Having a request ID can help the finAPI support team to work more efficiently and solve tickets faster.<h3 id=\"type-coercion\"><strong>Type Coercion</strong></h3>In order to ease the integration for some languages, which do not natively support high precision number representations, Web Form 2.0 API supports relax type binding for the openAPI type <code>number</code>, which is used for money amount fields. If you use one of those languages, to avoid precision errors that can appear from <code>float</code> values, you can pass the amount as a <code>string</code>.<h3 id=\"general-faq\"><strong>FAQ</strong></h3><strong>Is there a finAPI SDK?</strong><br/>Currently we do not offer a native SDK, but there is the option to generate an SDKfor almost any target language via OpenAPI. Use the 'Download SDK' button on this page for SDK generation.<br/><br/><strong>Why do I need to keep authorizing when calling services on this page?</strong><br/>This page is a \"one-page-app\". Reloading the page resets the OAuth authorization context. There is generally no need to reload the page, so just don't do it and your authorization will persist.
API version: 2.430.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package webform2
import (
"encoding/json"
)
// TaskCallbacks Callbacks for the task. Find more info in the <a href='https://documentation.finapi.io/webform/For-best-results!.2477654019.html#Forbestresults!-Enhanceyourexperience!' target='_blank'>Web Form 2.0 Public Documentation</a>.
type TaskCallbacks struct {
// URL to which finAPI sends the notification message after the task is finalised (either completed successfully or with an error).<br/>finAPI will call this URL with HTTP method POST ignoring the response of the target endpoint. Only HTTPS URLs are allowed.
Finalised NullableString `json:"finalised,omitempty"`
// URL to which finAPI sends the notification message when the update can longer run in the background.<br/>finAPI will call this URL with HTTP method POST ignoring the response of the target endpoint. Only HTTPS URLs are allowed.
WebFormRequired NullableString `json:"webFormRequired,omitempty"`
}
// NewTaskCallbacks instantiates a new TaskCallbacks 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 NewTaskCallbacks() *TaskCallbacks {
this := TaskCallbacks{}
return &this
}
// NewTaskCallbacksWithDefaults instantiates a new TaskCallbacks 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 NewTaskCallbacksWithDefaults() *TaskCallbacks {
this := TaskCallbacks{}
return &this
}
// GetFinalised returns the Finalised field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *TaskCallbacks) GetFinalised() string {
if o == nil || o.Finalised.Get() == nil {
var ret string
return ret
}
return *o.Finalised.Get()
}
// GetFinalisedOk returns a tuple with the Finalised field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *TaskCallbacks) GetFinalisedOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.Finalised.Get(), o.Finalised.IsSet()
}
// HasFinalised returns a boolean if a field has been set.
func (o *TaskCallbacks) HasFinalised() bool {
if o != nil && o.Finalised.IsSet() {
return true
}
return false
}
// SetFinalised gets a reference to the given NullableString and assigns it to the Finalised field.
func (o *TaskCallbacks) SetFinalised(v string) {
o.Finalised.Set(&v)
}
// SetFinalisedNil sets the value for Finalised to be an explicit nil
func (o *TaskCallbacks) SetFinalisedNil() {
o.Finalised.Set(nil)
}
// UnsetFinalised ensures that no value is present for Finalised, not even an explicit nil
func (o *TaskCallbacks) UnsetFinalised() {
o.Finalised.Unset()
}
// GetWebFormRequired returns the WebFormRequired field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *TaskCallbacks) GetWebFormRequired() string {
if o == nil || o.WebFormRequired.Get() == nil {
var ret string
return ret
}
return *o.WebFormRequired.Get()
}
// GetWebFormRequiredOk returns a tuple with the WebFormRequired field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *TaskCallbacks) GetWebFormRequiredOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.WebFormRequired.Get(), o.WebFormRequired.IsSet()
}
// HasWebFormRequired returns a boolean if a field has been set.
func (o *TaskCallbacks) HasWebFormRequired() bool {
if o != nil && o.WebFormRequired.IsSet() {
return true
}
return false
}
// SetWebFormRequired gets a reference to the given NullableString and assigns it to the WebFormRequired field.
func (o *TaskCallbacks) SetWebFormRequired(v string) {
o.WebFormRequired.Set(&v)
}
// SetWebFormRequiredNil sets the value for WebFormRequired to be an explicit nil
func (o *TaskCallbacks) SetWebFormRequiredNil() {
o.WebFormRequired.Set(nil)
}
// UnsetWebFormRequired ensures that no value is present for WebFormRequired, not even an explicit nil
func (o *TaskCallbacks) UnsetWebFormRequired() {
o.WebFormRequired.Unset()
}
func (o TaskCallbacks) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Finalised.IsSet() {
toSerialize["finalised"] = o.Finalised.Get()
}
if o.WebFormRequired.IsSet() {
toSerialize["webFormRequired"] = o.WebFormRequired.Get()
}
return json.Marshal(toSerialize)
}
type NullableTaskCallbacks struct {
value *TaskCallbacks
isSet bool
}
func (v NullableTaskCallbacks) Get() *TaskCallbacks {
return v.value
}
func (v *NullableTaskCallbacks) Set(val *TaskCallbacks) {
v.value = val
v.isSet = true
}
func (v NullableTaskCallbacks) IsSet() bool {
return v.isSet
}
func (v *NullableTaskCallbacks) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableTaskCallbacks(val *TaskCallbacks) *NullableTaskCallbacks {
return &NullableTaskCallbacks{value: val, isSet: true}
}
func (v NullableTaskCallbacks) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableTaskCallbacks) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}