<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/billing/v1/cloud_billing.proto

namespace Google\Cloud\Billing\V1;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * Response message for `ListBillingAccounts`.
 *
 * Generated from protobuf message <code>google.cloud.billing.v1.ListBillingAccountsResponse</code>
 */
class ListBillingAccountsResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * A list of billing accounts.
     *
     * Generated from protobuf field <code>repeated .google.cloud.billing.v1.BillingAccount billing_accounts = 1;</code>
     */
    private $billing_accounts;
    /**
     * A token to retrieve the next page of results. To retrieve the next page,
     * call `ListBillingAccounts` again with the `page_token` field set to this
     * value. This field is empty if there are no more results to retrieve.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     */
    private $next_page_token = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<\Google\Cloud\Billing\V1\BillingAccount>|\Google\Protobuf\Internal\RepeatedField $billing_accounts
     *           A list of billing accounts.
     *     @type string $next_page_token
     *           A token to retrieve the next page of results. To retrieve the next page,
     *           call `ListBillingAccounts` again with the `page_token` field set to this
     *           value. This field is empty if there are no more results to retrieve.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Billing\V1\CloudBilling::initOnce();
        parent::__construct($data);
    }

    /**
     * A list of billing accounts.
     *
     * Generated from protobuf field <code>repeated .google.cloud.billing.v1.BillingAccount billing_accounts = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getBillingAccounts()
    {
        return $this->billing_accounts;
    }

    /**
     * A list of billing accounts.
     *
     * Generated from protobuf field <code>repeated .google.cloud.billing.v1.BillingAccount billing_accounts = 1;</code>
     * @param array<\Google\Cloud\Billing\V1\BillingAccount>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setBillingAccounts($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Billing\V1\BillingAccount::class);
        $this->billing_accounts = $arr;

        return $this;
    }

    /**
     * A token to retrieve the next page of results. To retrieve the next page,
     * call `ListBillingAccounts` again with the `page_token` field set to this
     * value. This field is empty if there are no more results to retrieve.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * A token to retrieve the next page of results. To retrieve the next page,
     * call `ListBillingAccounts` again with the `page_token` field set to this
     * value. This field is empty if there are no more results to retrieve.
     *
     * 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;
    }

}

