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

namespace Google\Cloud\Billing\V1;

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

/**
 * Response message for `ListSkus`.
 *
 * Generated from protobuf message <code>google.cloud.billing.v1.ListSkusResponse</code>
 */
class ListSkusResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * The list of public SKUs of the given service.
     *
     * Generated from protobuf field <code>repeated .google.cloud.billing.v1.Sku skus = 1;</code>
     */
    private $skus;
    /**
     * A token to retrieve the next page of results. To retrieve the next page,
     * call `ListSkus` 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\Sku>|\Google\Protobuf\Internal\RepeatedField $skus
     *           The list of public SKUs of the given service.
     *     @type string $next_page_token
     *           A token to retrieve the next page of results. To retrieve the next page,
     *           call `ListSkus` 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\CloudCatalog::initOnce();
        parent::__construct($data);
    }

    /**
     * The list of public SKUs of the given service.
     *
     * Generated from protobuf field <code>repeated .google.cloud.billing.v1.Sku skus = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getSkus()
    {
        return $this->skus;
    }

    /**
     * The list of public SKUs of the given service.
     *
     * Generated from protobuf field <code>repeated .google.cloud.billing.v1.Sku skus = 1;</code>
     * @param array<\Google\Cloud\Billing\V1\Sku>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setSkus($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Billing\V1\Sku::class);
        $this->skus = $arr;

        return $this;
    }

    /**
     * A token to retrieve the next page of results. To retrieve the next page,
     * call `ListSkus` 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 `ListSkus` 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;
    }

}

