class Azure::Reservations::Mgmt::V2019_04_01_preview::Models::RenewPropertiesResponse

Model object.

Attributes

billing_currency_total[RW]

@return [RenewPropertiesResponseBillingCurrencyTotal] Currency and amount that customer will be charged in customer's local currency for renewal purchase. Tax is not included.

pricing_currency_total[RW]

@return [RenewPropertiesResponsePricingCurrencyTotal] Amount that Microsoft uses for record. Used during refund for calculating refund limit. Tax is not included. This is locked price 30 days before expiry.

purchase_properties[RW]

@return [PurchaseRequest]

Private Class Methods

mapper() click to toggle source

Mapper for RenewPropertiesResponse class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-04-01-preview/generated/azure_mgmt_reservations/models/renew_properties_response.rb, line 34
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RenewPropertiesResponse',
    type: {
      name: 'Composite',
      class_name: 'RenewPropertiesResponse',
      model_properties: {
        purchase_properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'purchaseProperties',
          type: {
            name: 'Composite',
            class_name: 'PurchaseRequest'
          }
        },
        pricing_currency_total: {
          client_side_validation: true,
          required: false,
          serialized_name: 'pricingCurrencyTotal',
          type: {
            name: 'Composite',
            class_name: 'RenewPropertiesResponsePricingCurrencyTotal'
          }
        },
        billing_currency_total: {
          client_side_validation: true,
          required: false,
          serialized_name: 'billingCurrencyTotal',
          type: {
            name: 'Composite',
            class_name: 'RenewPropertiesResponseBillingCurrencyTotal'
          }
        }
      }
    }
  }
end