<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/recaptchaenterprise/v1/recaptchaenterprise.proto
namespace Google\Cloud\RecaptchaEnterprise\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* The response to a `ListRelatedAccountGroups` call.
*
* Generated from protobuf message <code>google.cloud.recaptchaenterprise.v1.ListRelatedAccountGroupsResponse</code>
*/
class ListRelatedAccountGroupsResponse extends \Google\Protobuf\Internal\Message
{
/**
* The groups of related accounts listed by the query.
*
* Generated from protobuf field <code>repeated .google.cloud.recaptchaenterprise.v1.RelatedAccountGroup related_account_groups = 1;</code>
*/
private $related_account_groups;
/**
* A token, which can be sent as `page_token` to retrieve the next page.
* If this field is omitted, there are no subsequent pages.
*
* 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\RecaptchaEnterprise\V1\RelatedAccountGroup>|\Google\Protobuf\Internal\RepeatedField $related_account_groups
* The groups of related accounts listed by the query.
* @type string $next_page_token
* A token, which can be sent as `page_token` to retrieve the next page.
* If this field is omitted, there are no subsequent pages.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Cloud\Recaptchaenterprise\V1\Recaptchaenterprise::initOnce();
parent::__construct($data);
}
/**
* The groups of related accounts listed by the query.
*
* Generated from protobuf field <code>repeated .google.cloud.recaptchaenterprise.v1.RelatedAccountGroup related_account_groups = 1;</code>
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getRelatedAccountGroups()
{
return $this->related_account_groups;
}
/**
* The groups of related accounts listed by the query.
*
* Generated from protobuf field <code>repeated .google.cloud.recaptchaenterprise.v1.RelatedAccountGroup related_account_groups = 1;</code>
* @param array<\Google\Cloud\RecaptchaEnterprise\V1\RelatedAccountGroup>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setRelatedAccountGroups($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\RecaptchaEnterprise\V1\RelatedAccountGroup::class);
$this->related_account_groups = $arr;
return $this;
}
/**
* A token, which can be sent as `page_token` to retrieve the next page.
* If this field is omitted, there are no subsequent pages.
*
* Generated from protobuf field <code>string next_page_token = 2;</code>
* @return string
*/
public function getNextPageToken()
{
return $this->next_page_token;
}
/**
* A token, which can be sent as `page_token` to retrieve the next page.
* If this field is omitted, there are no subsequent pages.
*
* 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;
}
}