Skip to content

Commit

Permalink
Update FpPipelineParam struct to use the Default as map[string]interf…
Browse files Browse the repository at this point in the history
…ace instead of string
  • Loading branch information
Subhajit97 committed Nov 7, 2023
1 parent 31d74c0 commit 484929c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -806,14 +806,14 @@ components:
type: object
FpPipelineParam:
example:
default: default
default: "{}"
name: name
description: description
optional: true
type: type
properties:
default:
type: string
type: object
description:
type: string
name:
Expand Down Expand Up @@ -878,12 +878,12 @@ components:
name: name
description: description
params:
- default: default
- default: "{}"
name: name
description: description
optional: true
type: type
- default: default
- default: "{}"
name: name
description: description
optional: true
Expand Down
8 changes: 4 additions & 4 deletions docs/FpPipelineParam.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Default** | Pointer to **string** | | [optional]
**Default** | Pointer to **map[string]interface{}** | | [optional]
**Description** | Pointer to **string** | | [optional]
**Name** | Pointer to **string** | | [optional]
**Optional** | Pointer to **bool** | | [optional]
Expand All @@ -31,20 +31,20 @@ but it doesn't guarantee that properties required by API are set

### GetDefault

`func (o *FpPipelineParam) GetDefault() string`
`func (o *FpPipelineParam) GetDefault() map[string]interface{}`

GetDefault returns the Default field if non-nil, zero value otherwise.

### GetDefaultOk

`func (o *FpPipelineParam) GetDefaultOk() (*string, bool)`
`func (o *FpPipelineParam) GetDefaultOk() (*map[string]interface{}, bool)`

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

### SetDefault

`func (o *FpPipelineParam) SetDefault(v string)`
`func (o *FpPipelineParam) SetDefault(v map[string]interface{})`

SetDefault sets Default field to given value.

Expand Down
18 changes: 9 additions & 9 deletions model_fp_pipeline_param.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 484929c

Please sign in to comment.