Skip to content

Commit

Permalink
Introduce a new getter method in StartChildWorkflowExecutionInitiated…
Browse files Browse the repository at this point in the history
…EventAttributes (#6217)
  • Loading branch information
sankari165 authored Aug 8, 2024
1 parent 0409857 commit d9c7481
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions common/types/shared.go
Original file line number Diff line number Diff line change
Expand Up @@ -6204,6 +6204,14 @@ func (v *StartChildWorkflowExecutionInitiatedEventAttributes) GetParentClosePoli
return
}

// GetExecutionStartToCloseTimeoutSeconds is an internal getter (TBD...)
func (v *StartChildWorkflowExecutionInitiatedEventAttributes) GetExecutionStartToCloseTimeoutSeconds() (o int32) {
if v != nil && v.ExecutionStartToCloseTimeoutSeconds != nil {
return *v.ExecutionStartToCloseTimeoutSeconds
}
return
}

// StartTimeFilter is an internal type (TBD...)
type StartTimeFilter struct {
EarliestTime *int64 `json:"earliestTime,omitempty"`
Expand Down

0 comments on commit d9c7481

Please sign in to comment.