34667-vm/vendor/google/cloud-dialogflow/src/V2/ListIntentsResponse.php
Flatlogic Bot 2e0e56a927 2
2025-10-05 18:08:48 +00:00

111 lines
3.5 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/dialogflow/v2/intent.proto
namespace Google\Cloud\Dialogflow\V2;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* The response message for
* [Intents.ListIntents][google.cloud.dialogflow.v2.Intents.ListIntents].
*
* Generated from protobuf message <code>google.cloud.dialogflow.v2.ListIntentsResponse</code>
*/
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 <code>repeated .google.cloud.dialogflow.v2.Intent intents = 1;</code>
*/
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 <code>string next_page_token = 2;</code>
*/
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 <code>repeated .google.cloud.dialogflow.v2.Intent intents = 1;</code>
* @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 <code>repeated .google.cloud.dialogflow.v2.Intent intents = 1;</code>
* @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 <code>string next_page_token = 2;</code>
* @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 <code>string next_page_token = 2;</code>
* @param string $var
* @return $this
*/
public function setNextPageToken($var)
{
GPBUtil::checkString($var, True);
$this->next_page_token = $var;
return $this;
}
}