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

namespace Google\Cloud\Channel\V1;

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

/**
 * Represents constraints required to purchase the Offer for a customer.
 *
 * Generated from protobuf message <code>google.cloud.channel.v1.CustomerConstraints</code>
 */
class CustomerConstraints extends \Google\Protobuf\Internal\Message
{
    /**
     * Allowed geographical regions of the customer.
     *
     * Generated from protobuf field <code>repeated string allowed_regions = 1;</code>
     */
    private $allowed_regions;
    /**
     * Allowed Customer Type.
     *
     * Generated from protobuf field <code>repeated .google.cloud.channel.v1.CloudIdentityInfo.CustomerType allowed_customer_types = 2;</code>
     */
    private $allowed_customer_types;
    /**
     * Allowed Promotional Order Type. Present for Promotional offers.
     *
     * Generated from protobuf field <code>repeated .google.cloud.channel.v1.PromotionalOrderType promotional_order_types = 3;</code>
     */
    private $promotional_order_types;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<string>|\Google\Protobuf\Internal\RepeatedField $allowed_regions
     *           Allowed geographical regions of the customer.
     *     @type array<int>|\Google\Protobuf\Internal\RepeatedField $allowed_customer_types
     *           Allowed Customer Type.
     *     @type array<int>|\Google\Protobuf\Internal\RepeatedField $promotional_order_types
     *           Allowed Promotional Order Type. Present for Promotional offers.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Channel\V1\Offers::initOnce();
        parent::__construct($data);
    }

    /**
     * Allowed geographical regions of the customer.
     *
     * Generated from protobuf field <code>repeated string allowed_regions = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getAllowedRegions()
    {
        return $this->allowed_regions;
    }

    /**
     * Allowed geographical regions of the customer.
     *
     * Generated from protobuf field <code>repeated string allowed_regions = 1;</code>
     * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setAllowedRegions($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
        $this->allowed_regions = $arr;

        return $this;
    }

    /**
     * Allowed Customer Type.
     *
     * Generated from protobuf field <code>repeated .google.cloud.channel.v1.CloudIdentityInfo.CustomerType allowed_customer_types = 2;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getAllowedCustomerTypes()
    {
        return $this->allowed_customer_types;
    }

    /**
     * Allowed Customer Type.
     *
     * Generated from protobuf field <code>repeated .google.cloud.channel.v1.CloudIdentityInfo.CustomerType allowed_customer_types = 2;</code>
     * @param array<int>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setAllowedCustomerTypes($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::ENUM, \Google\Cloud\Channel\V1\CloudIdentityInfo\CustomerType::class);
        $this->allowed_customer_types = $arr;

        return $this;
    }

    /**
     * Allowed Promotional Order Type. Present for Promotional offers.
     *
     * Generated from protobuf field <code>repeated .google.cloud.channel.v1.PromotionalOrderType promotional_order_types = 3;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getPromotionalOrderTypes()
    {
        return $this->promotional_order_types;
    }

    /**
     * Allowed Promotional Order Type. Present for Promotional offers.
     *
     * Generated from protobuf field <code>repeated .google.cloud.channel.v1.PromotionalOrderType promotional_order_types = 3;</code>
     * @param array<int>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setPromotionalOrderTypes($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::ENUM, \Google\Cloud\Channel\V1\PromotionalOrderType::class);
        $this->promotional_order_types = $arr;

        return $this;
    }

}

