Skip to content

Commit

Permalink
Automated build 'Automated commit 'Merge pull request #1777 from sail…
Browse files Browse the repository at this point in the history
…point/devrel-1723

Update enum to type string and add additional enum values' by github action: 10583471851' go sdk: 10583478796
  • Loading branch information
developer-relations-sp committed Aug 27, 2024
1 parent 2bc823c commit 54b89aa
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 28 deletions.
6 changes: 5 additions & 1 deletion api_v2024/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80348,8 +80348,12 @@ components:
- ActivityTaskStarted
- ActivityTaskCompleted
- ActivityTaskFailed
- StartChildWorkflowExecutionInitiated
- ChildWorkflowExecutionStarted
- ChildWorkflowExecutionCompleted
- ChildWorkflowExecutionFailed
example: WorkflowTaskScheduled
type: object
type: string
timestamp:
description: The date-time when the event occurred
example: 2022-02-07T20:13:31.640618296Z
Expand Down
8 changes: 4 additions & 4 deletions api_v2024/docs/WorkflowExecutionEvent.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **map[string]interface{}** | The type of event | [optional]
**Type** | Pointer to **string** | The type of event | [optional]
**Timestamp** | Pointer to **time.Time** | The date-time when the event occurred | [optional]
**Attributes** | Pointer to **map[string]interface{}** | Additional attributes associated with the event | [optional]

Expand All @@ -29,20 +29,20 @@ but it doesn't guarantee that properties required by API are set

### GetType

`func (o *WorkflowExecutionEvent) GetType() map[string]interface{}`
`func (o *WorkflowExecutionEvent) GetType() string`

GetType returns the Type field if non-nil, zero value otherwise.

### GetTypeOk

`func (o *WorkflowExecutionEvent) GetTypeOk() (*map[string]interface{}, bool)`
`func (o *WorkflowExecutionEvent) GetTypeOk() (*string, bool)`

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

### SetType

`func (o *WorkflowExecutionEvent) SetType(v map[string]interface{})`
`func (o *WorkflowExecutionEvent) SetType(v string)`

SetType sets Type field to given value.

Expand Down
18 changes: 9 additions & 9 deletions api_v2024/model_workflow_execution_event.go

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

6 changes: 5 additions & 1 deletion api_v3/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54627,8 +54627,12 @@ components:
- ActivityTaskStarted
- ActivityTaskCompleted
- ActivityTaskFailed
- StartChildWorkflowExecutionInitiated
- ChildWorkflowExecutionStarted
- ChildWorkflowExecutionCompleted
- ChildWorkflowExecutionFailed
example: WorkflowTaskScheduled
type: object
type: string
timestamp:
description: The date-time when the event occurred
example: 2022-02-07T20:13:31.640618296Z
Expand Down
8 changes: 4 additions & 4 deletions api_v3/docs/WorkflowExecutionEvent.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **map[string]interface{}** | The type of event | [optional]
**Type** | Pointer to **string** | The type of event | [optional]
**Timestamp** | Pointer to **time.Time** | The date-time when the event occurred | [optional]
**Attributes** | Pointer to **map[string]interface{}** | Additional attributes associated with the event | [optional]

Expand All @@ -29,20 +29,20 @@ but it doesn't guarantee that properties required by API are set

### GetType

`func (o *WorkflowExecutionEvent) GetType() map[string]interface{}`
`func (o *WorkflowExecutionEvent) GetType() string`

GetType returns the Type field if non-nil, zero value otherwise.

### GetTypeOk

`func (o *WorkflowExecutionEvent) GetTypeOk() (*map[string]interface{}, bool)`
`func (o *WorkflowExecutionEvent) GetTypeOk() (*string, bool)`

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

### SetType

`func (o *WorkflowExecutionEvent) SetType(v map[string]interface{})`
`func (o *WorkflowExecutionEvent) SetType(v string)`

SetType sets Type field to given value.

Expand Down
18 changes: 9 additions & 9 deletions api_v3/model_workflow_execution_event.go

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

0 comments on commit 54b89aa

Please sign in to comment.