mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
13 lines
350 B
Ruby
13 lines
350 B
Ruby
require 'fog/cloudsigma/nested_model'
|
|
require 'fog/cloudsigma/models/subscriptions'
|
|
|
|
module Fog
|
|
module Compute
|
|
class CloudSigma
|
|
class PriceCalculation < Fog::CloudSigma::CloudsigmaModel
|
|
attribute :price, :type => :float
|
|
model_attribute_array :subscriptions, Subscription, :aliases => 'objects'
|
|
end
|
|
end
|
|
end
|
|
end
|