google.cloud.dialogflow.v2.Intent.FollowupIntentInfo */ class Intent_FollowupIntentInfo extends \Google\Protobuf\Internal\Message { /** * The unique identifier of the followup intent. * Format: `projects//agent/intents/`. * * Generated from protobuf field string followup_intent_name = 1; */ private $followup_intent_name = ''; /** * The unique identifier of the followup intent parent. * Format: `projects//agent/intents/`. * * Generated from protobuf field string parent_followup_intent_name = 2; */ private $parent_followup_intent_name = ''; public function __construct() { \GPBMetadata\Google\Cloud\Dialogflow\V2\Intent::initOnce(); parent::__construct(); } /** * The unique identifier of the followup intent. * Format: `projects//agent/intents/`. * * Generated from protobuf field string followup_intent_name = 1; * @return string */ public function getFollowupIntentName() { return $this->followup_intent_name; } /** * The unique identifier of the followup intent. * Format: `projects//agent/intents/`. * * Generated from protobuf field string followup_intent_name = 1; * @param string $var * @return $this */ public function setFollowupIntentName($var) { GPBUtil::checkString($var, True); $this->followup_intent_name = $var; return $this; } /** * The unique identifier of the followup intent parent. * Format: `projects//agent/intents/`. * * Generated from protobuf field string parent_followup_intent_name = 2; * @return string */ public function getParentFollowupIntentName() { return $this->parent_followup_intent_name; } /** * The unique identifier of the followup intent parent. * Format: `projects//agent/intents/`. * * Generated from protobuf field string parent_followup_intent_name = 2; * @param string $var * @return $this */ public function setParentFollowupIntentName($var) { GPBUtil::checkString($var, True); $this->parent_followup_intent_name = $var; return $this; } }