displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * Required. The unique identifier of the flow. Format: * `projects//locations//agents//flows/`. * * @param string $flow */ public function setFlow($flow) { $this->flow = $flow; } /** * @return string */ public function getFlow() { return $this->flow; } /** * Required. Flow invocation's output state. * * Accepted values: OUTPUT_STATE_UNSPECIFIED, OUTPUT_STATE_OK, * OUTPUT_STATE_CANCELLED, OUTPUT_STATE_FAILED, OUTPUT_STATE_ESCALATED, * OUTPUT_STATE_PENDING * * @param self::FLOW_STATE_* $flowState */ public function setFlowState($flowState) { $this->flowState = $flowState; } /** * @return self::FLOW_STATE_* */ public function getFlowState() { return $this->flowState; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDialogflowCxV3FlowInvocation::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3FlowInvocation');