Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1CustomerConstraints

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb

Overview

Represents constraints required to purchase the Offer for a customer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1CustomerConstraints

Returns a new instance of GoogleCloudChannelV1CustomerConstraints.



709
710
711
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 709

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#allowed_customer_typesArray<String>

Allowed Customer Type. Corresponds to the JSON property allowedCustomerTypes

Returns:

  • (Array<String>)


697
698
699
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 697

def allowed_customer_types
  @allowed_customer_types
end

#allowed_regionsArray<String>

Allowed geographical regions of the customer. Corresponds to the JSON property allowedRegions

Returns:

  • (Array<String>)


702
703
704
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 702

def allowed_regions
  @allowed_regions
end

#promotional_order_typesArray<String>

Allowed Promotional Order Type. Present for Promotional offers. Corresponds to the JSON property promotionalOrderTypes

Returns:

  • (Array<String>)


707
708
709
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 707

def promotional_order_types
  @promotional_order_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



714
715
716
717
718
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 714

def update!(**args)
  @allowed_customer_types = args[:allowed_customer_types] if args.key?(:allowed_customer_types)
  @allowed_regions = args[:allowed_regions] if args.key?(:allowed_regions)
  @promotional_order_types = args[:promotional_order_types] if args.key?(:promotional_order_types)
end