Sha256: 42583d4ffdaec4b237151b6650d18bdcecab01e9fa8077aa514864854a3d33e1

Contents?: true

Size: 352 Bytes

Versions: 2

Compression:

Stored size: 352 Bytes

Contents

module Fog
  module AWS
    class S3

      class Owner < Fog::Model

        attr_accessor :display_name,
          :id

        def initialize(attributes = {})
          remap_attributes(attributes, { 
            'DisplayName' => :display_name,
            'ID'          => :id
          })
          super
        end

      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
geemus-fog-0.0.1 lib/fog/aws/models/s3/owner.rb
geemus-fog-0.0.3 lib/fog/aws/models/s3/owner.rb