From d9c74810eab2c57247b896768a0cd5c811a1c785 Mon Sep 17 00:00:00 2001 From: sankari gopalakrishnan Date: Thu, 8 Aug 2024 15:25:27 +0200 Subject: [PATCH] Introduce a new getter method in StartChildWorkflowExecutionInitiatedEventAttributes (#6217) --- common/types/shared.go | 8 ++++++++ 1 file changed, 8 insertions(+) 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"`