google.cloud.dialogflow.v2.ListIntentsResponse
*/
class ListIntentsResponse extends \Google\Protobuf\Internal\Message
{
/**
* The list of agent intents. There will be a maximum number of items
* returned based on the page_size field in the request.
*
* Generated from protobuf field repeated .google.cloud.dialogflow.v2.Intent intents = 1;
*/
private $intents;
/**
* Token to retrieve the next page of results, or empty if there are no
* more results in the list.
*
* Generated from protobuf field string next_page_token = 2;
*/
protected $next_page_token = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type array<\Google\Cloud\Dialogflow\V2\Intent>|\Google\Protobuf\Internal\RepeatedField $intents
* The list of agent intents. There will be a maximum number of items
* returned based on the page_size field in the request.
* @type string $next_page_token
* Token to retrieve the next page of results, or empty if there are no
* more results in the list.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Cloud\Dialogflow\V2\Intent::initOnce();
parent::__construct($data);
}
/**
* The list of agent intents. There will be a maximum number of items
* returned based on the page_size field in the request.
*
* Generated from protobuf field repeated .google.cloud.dialogflow.v2.Intent intents = 1;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getIntents()
{
return $this->intents;
}
/**
* The list of agent intents. There will be a maximum number of items
* returned based on the page_size field in the request.
*
* Generated from protobuf field repeated .google.cloud.dialogflow.v2.Intent intents = 1;
* @param array<\Google\Cloud\Dialogflow\V2\Intent>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setIntents($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Dialogflow\V2\Intent::class);
$this->intents = $arr;
return $this;
}
/**
* Token to retrieve the next page of results, or empty if there are no
* more results in the list.
*
* Generated from protobuf field string next_page_token = 2;
* @return string
*/
public function getNextPageToken()
{
return $this->next_page_token;
}
/**
* Token to retrieve the next page of results, or empty if there are no
* more results in the list.
*
* Generated from protobuf field string next_page_token = 2;
* @param string $var
* @return $this
*/
public function setNextPageToken($var)
{
GPBUtil::checkString($var, True);
$this->next_page_token = $var;
return $this;
}
}