You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{#vars}}**{{name}}** | {{#isNullable}}Pointer to {{/isNullable}}{{#isPrimitiveType}}**{{{dataType}}}**{{/isPrimitiveType}}{{^isPrimitiveType}}[**{{{dataType}}}**]({{complexType}}.md){{/isPrimitiveType}} | {{description}} | {{^required}}[optional] {{/required}}{{#readOnly}}[readonly] {{/readOnly}}{{#defaultValue}}[default to {{{.}}}]{{/defaultValue}}
7
+
{{#vars}}**{{name}}** | Pointer to {{#isPrimitiveType}}**{{{dataType}}}**{{/isPrimitiveType}}{{^isPrimitiveType}}[**{{{dataType}}}**]({{complexType}}.md){{/isPrimitiveType}} | {{description}} | {{^required}}[optional] {{/required}}{{#readOnly}}[readonly] {{/readOnly}}{{#defaultValue}}[default to {{{.}}}]{{/defaultValue}}
8
8
{{/vars}}
9
9
10
+
{{^isEnum}}
11
+
## Methods
12
+
13
+
{{#vars}}
14
+
### Get{{name}}
15
+
16
+
`func (o *{{classname}}) Get{{name}}() {{dataType}}`
17
+
18
+
Get{{name}} returns the {{name}} field if non-nil, zero value otherwise.
19
+
20
+
### Get{{name}}Ok
21
+
22
+
`func (o *{{classname}}) Get{{name}}Ok() ({{dataType}}, bool)`
23
+
24
+
Get{{name}}Ok returns a tuple with the {{name}} field if it's non-nil, zero value otherwise
25
+
and a boolean to check if the value has been set.
26
+
27
+
### Has{{name}}
28
+
29
+
`func (o *{{classname}}) Has{{name}}() bool`
30
+
31
+
Has{{name}} returns a boolean if a field has been set.
32
+
33
+
### Set{{name}}
34
+
35
+
`func (o *{{classname}}) Set{{name}}(v {{dataType}})`
36
+
37
+
Set{{name}} gets a reference to the given {{dataType}} and assigns it to the {{name}} field.
38
+
39
+
{{#isNullable}}
40
+
### Set{{name}}ExplicitNull
41
+
42
+
`func (o *{{classname}}) Set{{name}}ExplicitNull(b bool)`
43
+
44
+
Set{{name}}ExplicitNull (un)sets {{name}} to be considered as explicit "null" value
45
+
when serializing to JSON (pass true as argument to set this, false to unset)
46
+
The {{name}} value is set to nil even if false is passed
47
+
{{/isNullable}}
48
+
{{/vars}}
49
+
{{/isEnum}}
50
+
10
51
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
`func (o *AdditionalPropertiesAnyType) GetName() string`
14
+
15
+
GetName returns the Name field if non-nil, zero value otherwise.
16
+
17
+
### GetNameOk
18
+
19
+
`func (o *AdditionalPropertiesAnyType) GetNameOk() (string, bool)`
20
+
21
+
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
22
+
and a boolean to check if the value has been set.
23
+
24
+
### HasName
25
+
26
+
`func (o *AdditionalPropertiesAnyType) HasName() bool`
27
+
28
+
HasName returns a boolean if a field has been set.
29
+
30
+
### SetName
31
+
32
+
`func (o *AdditionalPropertiesAnyType) SetName(v string)`
33
+
34
+
SetName gets a reference to the given string and assigns it to the Name field.
35
+
8
36
9
37
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
`func (o *AdditionalPropertiesArray) GetName() string`
14
+
15
+
GetName returns the Name field if non-nil, zero value otherwise.
16
+
17
+
### GetNameOk
18
+
19
+
`func (o *AdditionalPropertiesArray) GetNameOk() (string, bool)`
20
+
21
+
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
22
+
and a boolean to check if the value has been set.
23
+
24
+
### HasName
25
+
26
+
`func (o *AdditionalPropertiesArray) HasName() bool`
27
+
28
+
HasName returns a boolean if a field has been set.
29
+
30
+
### SetName
31
+
32
+
`func (o *AdditionalPropertiesArray) SetName(v string)`
33
+
34
+
SetName gets a reference to the given string and assigns it to the Name field.
35
+
8
36
9
37
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments