Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
5721959
Fix code generation for free-form objects in go-experimental
sebastien-rosset Feb 20, 2020
40470a6
Execute scripts in bin directory
sebastien-rosset Feb 20, 2020
1d12a00
Add more use cases for open-ended types
sebastien-rosset Feb 21, 2020
128b6ca
Add more use cases for open-ended types
sebastien-rosset Feb 21, 2020
946bdc6
Add more use cases for open-ended types
sebastien-rosset Feb 21, 2020
7af5f83
add code comments
sebastien-rosset Feb 21, 2020
f2e4418
Better name for test properties
sebastien-rosset Feb 21, 2020
de43542
handle scenario when type is arbitrary
sebastien-rosset Feb 21, 2020
0c117c4
handle interface{} scenario
sebastien-rosset Feb 21, 2020
9ba18ef
handle interface{} scenario
sebastien-rosset Feb 21, 2020
c5a29f5
add helper function isAnyType
sebastien-rosset Feb 21, 2020
821eaeb
isAnyType function
sebastien-rosset Feb 21, 2020
16259c7
implementation of isAnyType function
sebastien-rosset Feb 21, 2020
b0d0f4a
fix javadoc issue
sebastien-rosset Feb 21, 2020
1f33e83
Merge branch 'master' of github.com:CiscoM31/openapi-generator into g…
sebastien-rosset Feb 21, 2020
9471954
handle interface{} scenario
sebastien-rosset Feb 22, 2020
48fac66
Merge remote-tracking branch 'origin' into go-experimental-free-form
sebastien-rosset Feb 26, 2020
1661128
Merge remote-tracking branch 'origin' into go-experimental-free-form
sebastien-rosset Feb 29, 2020
ee2c1cc
use equals comparison instead of ==
sebastien-rosset Mar 1, 2020
1323017
Merge branch 'master' of github.com:CiscoM31/openapi-generator into g…
sebastien-rosset Mar 12, 2020
60529ee
resolve merge conflicts
sebastien-rosset Mar 17, 2020
840a209
Merge branch 'master' of github.com:CiscoM31/openapi-generator into g…
sebastien-rosset Mar 24, 2020
1668293
merge from master
sebastien-rosset Mar 24, 2020
76ffa9e
merge from master
sebastien-rosset Mar 24, 2020
5d7be16
Merge remote-tracking branch 'origin' into go-experimental-free-form
sebastien-rosset Mar 24, 2020
4b714ad
Add code documentation
sebastien-rosset Mar 24, 2020
6c5afdd
Merge branch 'master' of github.com:CiscoM31/openapi-generator into g…
sebastien-rosset Mar 25, 2020
5cb8407
Merge branch 'master' of github.com:CiscoM31/openapi-generator into g…
sebastien-rosset Mar 25, 2020
4db388f
add code comments, remove unused min/max attribute, fix equals method
sebastien-rosset Mar 25, 2020
42cc09a
Handle 'anytype' use case
sebastien-rosset Mar 25, 2020
c70f531
add code comments
sebastien-rosset Mar 25, 2020
49d833c
override postProcessModelProperty to set vendor extension
sebastien-rosset Mar 25, 2020
2eeb4e5
Use vendorExtensions.x-golang-is-container
sebastien-rosset Mar 25, 2020
6c4c5fc
fix compilation error of generated code
sebastien-rosset Mar 25, 2020
9051376
Merge branch 'master' of github.com:CiscoM31/openapi-generator into g…
sebastien-rosset Mar 25, 2020
f736657
fix compilation error of generated code
sebastien-rosset Mar 25, 2020
5d4796c
fix compilation error of generated code
sebastien-rosset Mar 25, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
merge from master
  • Loading branch information
sebastien-rosset committed Mar 24, 2020
commit 76ffa9ef4fe9cb4b0642eef748e33ba0742b6f3a
Original file line number Diff line number Diff line change
Expand Up @@ -244,22 +244,22 @@ GetArbitraryObject returns the ArbitraryObject field if non-nil, zero value othe

### GetArbitraryObjectOk

`func (o *User) GetArbitraryObjectOk() (map[string]interface{}, bool)`
`func (o *User) GetArbitraryObjectOk() (*map[string]interface{}, bool)`

GetArbitraryObjectOk returns a tuple with the ArbitraryObject field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### HasArbitraryObject
### SetArbitraryObject

`func (o *User) HasArbitraryObject() bool`
`func (o *User) SetArbitraryObject(v map[string]interface{})`

HasArbitraryObject returns a boolean if a field has been set.
SetArbitraryObject sets ArbitraryObject field to given value.

### SetArbitraryObject
### HasArbitraryObject

`func (o *User) SetArbitraryObject(v map[string]interface{})`
`func (o *User) HasArbitraryObject() bool`

SetArbitraryObject gets a reference to the given map[string]interface{} and assigns it to the ArbitraryObject field.
HasArbitraryObject returns a boolean if a field has been set.

### GetArbitraryNullableObject

Expand All @@ -269,30 +269,33 @@ GetArbitraryNullableObject returns the ArbitraryNullableObject field if non-nil,

### GetArbitraryNullableObjectOk

`func (o *User) GetArbitraryNullableObjectOk() (map[string]interface{}, bool)`
`func (o *User) GetArbitraryNullableObjectOk() (*map[string]interface{}, bool)`

GetArbitraryNullableObjectOk returns a tuple with the ArbitraryNullableObject field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetArbitraryNullableObject

`func (o *User) SetArbitraryNullableObject(v map[string]interface{})`

SetArbitraryNullableObject sets ArbitraryNullableObject field to given value.

### HasArbitraryNullableObject

`func (o *User) HasArbitraryNullableObject() bool`

HasArbitraryNullableObject returns a boolean if a field has been set.

### SetArbitraryNullableObject

`func (o *User) SetArbitraryNullableObject(v map[string]interface{})`
### SetArbitraryNullableObjectNil

SetArbitraryNullableObject gets a reference to the given map[string]interface{} and assigns it to the ArbitraryNullableObject field.
`func (o *User) SetArbitraryNullableObjectNil(b bool)`

### SetArbitraryNullableObjectExplicitNull
SetArbitraryNullableObjectNil sets the value for ArbitraryNullableObject to be an explicit nil

`func (o *User) SetArbitraryNullableObjectExplicitNull(b bool)`
### UnsetArbitraryNullableObject
`func (o *User) UnsetArbitraryNullableObject()`

SetArbitraryNullableObjectExplicitNull (un)sets ArbitraryNullableObject to be considered as explicit "null" value
when serializing to JSON (pass true as argument to set this, false to unset)
The ArbitraryNullableObject value is set to nil even if false is passed
UnsetArbitraryNullableObject ensures that no value is present for ArbitraryNullableObject, not even an explicit nil
### GetArbitraryTypeValue

`func (o *User) GetArbitraryTypeValue() interface{}`
Expand All @@ -301,22 +304,22 @@ GetArbitraryTypeValue returns the ArbitraryTypeValue field if non-nil, zero valu

### GetArbitraryTypeValueOk

`func (o *User) GetArbitraryTypeValueOk() (interface{}, bool)`
`func (o *User) GetArbitraryTypeValueOk() (*interface{}, bool)`

GetArbitraryTypeValueOk returns a tuple with the ArbitraryTypeValue field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### HasArbitraryTypeValue
### SetArbitraryTypeValue

`func (o *User) HasArbitraryTypeValue() bool`
`func (o *User) SetArbitraryTypeValue(v interface{})`

HasArbitraryTypeValue returns a boolean if a field has been set.
SetArbitraryTypeValue sets ArbitraryTypeValue field to given value.

### SetArbitraryTypeValue
### HasArbitraryTypeValue

`func (o *User) SetArbitraryTypeValue(v interface{})`
`func (o *User) HasArbitraryTypeValue() bool`

SetArbitraryTypeValue gets a reference to the given interface{} and assigns it to the ArbitraryTypeValue field.
HasArbitraryTypeValue returns a boolean if a field has been set.

### GetArbitraryNullableTypeValue

Expand All @@ -326,30 +329,33 @@ GetArbitraryNullableTypeValue returns the ArbitraryNullableTypeValue field if no

### GetArbitraryNullableTypeValueOk

`func (o *User) GetArbitraryNullableTypeValueOk() (interface{}, bool)`
`func (o *User) GetArbitraryNullableTypeValueOk() (*interface{}, bool)`

GetArbitraryNullableTypeValueOk returns a tuple with the ArbitraryNullableTypeValue field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetArbitraryNullableTypeValue

`func (o *User) SetArbitraryNullableTypeValue(v interface{})`

SetArbitraryNullableTypeValue sets ArbitraryNullableTypeValue field to given value.

### HasArbitraryNullableTypeValue

`func (o *User) HasArbitraryNullableTypeValue() bool`

HasArbitraryNullableTypeValue returns a boolean if a field has been set.

### SetArbitraryNullableTypeValue

`func (o *User) SetArbitraryNullableTypeValue(v interface{})`
### SetArbitraryNullableTypeValueNil

SetArbitraryNullableTypeValue gets a reference to the given interface{} and assigns it to the ArbitraryNullableTypeValue field.
`func (o *User) SetArbitraryNullableTypeValueNil(b bool)`

### SetArbitraryNullableTypeValueExplicitNull
SetArbitraryNullableTypeValueNil sets the value for ArbitraryNullableTypeValue to be an explicit nil

`func (o *User) SetArbitraryNullableTypeValueExplicitNull(b bool)`
### UnsetArbitraryNullableTypeValue
`func (o *User) UnsetArbitraryNullableTypeValue()`

SetArbitraryNullableTypeValueExplicitNull (un)sets ArbitraryNullableTypeValue to be considered as explicit "null" value
when serializing to JSON (pass true as argument to set this, false to unset)
The ArbitraryNullableTypeValue value is set to nil even if false is passed
UnsetArbitraryNullableTypeValue ensures that no value is present for ArbitraryNullableTypeValue, not even an explicit nil

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down