class Azure::CustomerInsights::Mgmt::V2017_04_26::Models::HubBillingInfoFormat
Hub
billing info.
Attributes
max_units[RW]
@return [Integer] The maximum number of units can be used. One unit is 10,000 Profiles
and 100,000 Interactions
.
min_units[RW]
@return [Integer] The minimum number of units will be billed. One unit is 10,000 Profiles
and 100,000 Interactions
.
sku_name[RW]
@return [String] The sku name.
Private Class Methods
mapper()
click to toggle source
Mapper for HubBillingInfoFormat
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-04-26/generated/azure_mgmt_customer_insights/models/hub_billing_info_format.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'HubBillingInfoFormat', type: { name: 'Composite', class_name: 'HubBillingInfoFormat', model_properties: { sku_name: { client_side_validation: true, required: false, serialized_name: 'skuName', type: { name: 'String' } }, min_units: { client_side_validation: true, required: false, serialized_name: 'minUnits', constraints: { InclusiveMaximum: 10, InclusiveMinimum: 1 }, type: { name: 'Number' } }, max_units: { client_side_validation: true, required: false, serialized_name: 'maxUnits', constraints: { InclusiveMaximum: 10, InclusiveMinimum: 1 }, type: { name: 'Number' } } } } } end