1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/joyent/models/analytics/transformation.rb
2014-01-21 16:24:22 +00:00

13 lines
216 B
Ruby

require 'fog/core/model'
module Fog
module Joyent
class Analytics
class Transformation < Fog::Model
attribute :name
attribute :label
attribute :fields
end
end
end
end