Skip to content

Commit

Permalink
Updated SDK from latest Flowpipe definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
vhadianto committed Aug 16, 2024
1 parent e6a6891 commit 5518d51
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 86 deletions.
17 changes: 6 additions & 11 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1586,10 +1586,9 @@ components:
type: object
FpVariable:
example:
default: ""
type_string: type_string
file_name: file_name
value_default: "{}"
value_default: ""
name: name
description: description
end_line_number: 0
Expand All @@ -1598,8 +1597,6 @@ components:
value: ""
mod_name: mod_name
properties:
default:
type: AnyType
description:
type: string
end_line_number:
Expand All @@ -1619,7 +1616,7 @@ components:
value:
type: AnyType
value_default:
type: object
type: AnyType
type: object
ListIntegrationResponse:
example:
Expand Down Expand Up @@ -1993,21 +1990,19 @@ components:
example:
next_token: next_token
items:
- default: ""
type_string: type_string
- type_string: type_string
file_name: file_name
value_default: "{}"
value_default: ""
name: name
description: description
end_line_number: 0
start_line_number: 6
type: type
value: ""
mod_name: mod_name
- default: ""
type_string: type_string
- type_string: type_string
file_name: file_name
value_default: "{}"
value_default: ""
name: name
description: description
end_line_number: 0
Expand Down
34 changes: 4 additions & 30 deletions docs/FpVariable.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Default** | Pointer to **interface{}** | | [optional]
**Description** | Pointer to **string** | | [optional]
**EndLineNumber** | Pointer to **int32** | | [optional]
**FileName** | Pointer to **string** | | [optional]
Expand All @@ -14,7 +13,7 @@ Name | Type | Description | Notes
**Type** | Pointer to **string** | | [optional]
**TypeString** | Pointer to **string** | | [optional]
**Value** | Pointer to **interface{}** | | [optional]
**ValueDefault** | Pointer to **map[string]interface{}** | | [optional]
**ValueDefault** | Pointer to **interface{}** | | [optional]

## Methods

Expand All @@ -35,31 +34,6 @@ NewFpVariableWithDefaults instantiates a new FpVariable 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

### GetDefault

`func (o *FpVariable) GetDefault() interface{}`

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

### GetDefaultOk

`func (o *FpVariable) GetDefaultOk() (*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 *FpVariable) SetDefault(v interface{})`

SetDefault sets Default field to given value.

### HasDefault

`func (o *FpVariable) HasDefault() bool`

HasDefault returns a boolean if a field has been set.

### GetDescription

`func (o *FpVariable) GetDescription() string`
Expand Down Expand Up @@ -287,20 +261,20 @@ HasValue returns a boolean if a field has been set.

### GetValueDefault

`func (o *FpVariable) GetValueDefault() map[string]interface{}`
`func (o *FpVariable) GetValueDefault() interface{}`

GetValueDefault returns the ValueDefault field if non-nil, zero value otherwise.

### GetValueDefaultOk

`func (o *FpVariable) GetValueDefaultOk() (*map[string]interface{}, bool)`
`func (o *FpVariable) GetValueDefaultOk() (*interface{}, bool)`

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

### SetValueDefault

`func (o *FpVariable) SetValueDefault(v map[string]interface{})`
`func (o *FpVariable) SetValueDefault(v interface{})`

SetValueDefault sets ValueDefault field to given value.

Expand Down
54 changes: 9 additions & 45 deletions model_fp_variable.go

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

0 comments on commit 5518d51

Please sign in to comment.