google.cloud.dialogflow.v2.DeleteAgentRequest */ class DeleteAgentRequest extends \Google\Protobuf\Internal\Message { /** * Required. The project that the agent to delete is associated with. * Format: `projects/`. * * Generated from protobuf field string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { */ protected $parent = ''; /** * @param string $parent Required. The project that the agent to delete is associated with. * Format: `projects/`. Please see * {@see AgentsClient::projectName()} for help formatting this field. * * @return \Google\Cloud\Dialogflow\V2\DeleteAgentRequest * * @experimental */ public static function build(string $parent): self { return (new self()) ->setParent($parent); } /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $parent * Required. The project that the agent to delete is associated with. * Format: `projects/`. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Cloud\Dialogflow\V2\Agent::initOnce(); parent::__construct($data); } /** * Required. The project that the agent to delete is associated with. * Format: `projects/`. * * Generated from protobuf field string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { * @return string */ public function getParent() { return $this->parent; } /** * Required. The project that the agent to delete is associated with. * Format: `projects/`. * * Generated from protobuf field string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { * @param string $var * @return $this */ public function setParent($var) { GPBUtil::checkString($var, True); $this->parent = $var; return $this; } }