google.cloud.dialogflow.v2.ExportOperationMetadata */ class ExportOperationMetadata extends \Google\Protobuf\Internal\Message { /** * Cloud Storage file path of the exported data. * * Generated from protobuf field .google.cloud.dialogflow.v2.GcsDestination exported_gcs_destination = 1; */ protected $exported_gcs_destination = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Google\Cloud\Dialogflow\V2\GcsDestination $exported_gcs_destination * Cloud Storage file path of the exported data. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Cloud\Dialogflow\V2\Document::initOnce(); parent::__construct($data); } /** * Cloud Storage file path of the exported data. * * Generated from protobuf field .google.cloud.dialogflow.v2.GcsDestination exported_gcs_destination = 1; * @return \Google\Cloud\Dialogflow\V2\GcsDestination|null */ public function getExportedGcsDestination() { return $this->exported_gcs_destination; } public function hasExportedGcsDestination() { return isset($this->exported_gcs_destination); } public function clearExportedGcsDestination() { unset($this->exported_gcs_destination); } /** * Cloud Storage file path of the exported data. * * Generated from protobuf field .google.cloud.dialogflow.v2.GcsDestination exported_gcs_destination = 1; * @param \Google\Cloud\Dialogflow\V2\GcsDestination $var * @return $this */ public function setExportedGcsDestination($var) { GPBUtil::checkMessage($var, \Google\Cloud\Dialogflow\V2\GcsDestination::class); $this->exported_gcs_destination = $var; return $this; } }