diff --git a/common/types/shared.go b/common/types/shared.go index 9b49ac7cdc5..37944f8280a 100644 --- a/common/types/shared.go +++ b/common/types/shared.go @@ -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"`