Skip to content

Commit

Permalink
Automated build 'Automated commit 'Merge pull request #1863 from sail…
Browse files Browse the repository at this point in the history
…point/fix/postmanCollection

Fix circular reference' by github action: 11393451380' go sdk: 11393456475
  • Loading branch information
developer-relations-sp committed Oct 17, 2024
1 parent cea319f commit e752e90
Showing 3 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion api_v2024/api/openapi.yaml
Original file line number Diff line number Diff line change
@@ -107136,7 +107136,8 @@ components:
and: false
children: null
items:
$ref: '#/components/schemas/matchTerm'
additionalProperties: true
type: object
nullable: true
type: array
type: object
8 changes: 4 additions & 4 deletions api_v2024/docs/MatchTerm.md
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
**Op** | Pointer to **string** | The operator between name and value | [optional]
**Container** | Pointer to **bool** | If it is a container or a real match term | [optional] [default to false]
**And** | Pointer to **bool** | If it is AND logical operator for the children match terms | [optional] [default to false]
**Children** | Pointer to [**[]MatchTerm**](MatchTerm.md) | The children under this match term | [optional]
**Children** | Pointer to **[]map[string]interface{}** | The children under this match term | [optional]

## Methods

@@ -157,20 +157,20 @@ HasAnd returns a boolean if a field has been set.

### GetChildren

`func (o *MatchTerm) GetChildren() []MatchTerm`
`func (o *MatchTerm) GetChildren() []map[string]interface{}`

GetChildren returns the Children field if non-nil, zero value otherwise.

### GetChildrenOk

`func (o *MatchTerm) GetChildrenOk() (*[]MatchTerm, bool)`
`func (o *MatchTerm) GetChildrenOk() (*[]map[string]interface{}, bool)`

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

### SetChildren

`func (o *MatchTerm) SetChildren(v []MatchTerm)`
`func (o *MatchTerm) SetChildren(v []map[string]interface{})`

SetChildren sets Children field to given value.

12 changes: 6 additions & 6 deletions api_v2024/model_match_term.go

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

0 comments on commit e752e90

Please sign in to comment.