Class: Helene::S3::Owner

Inherits:
Object show all
Defined in:
lib/helene/s3/owner.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id, name) ⇒ Owner

Returns a new instance of Owner.



6
7
8
9
# File 'lib/helene/s3/owner.rb', line 6

def initialize(id, name)
  @id   = id
  @name = name
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



4
5
6
# File 'lib/helene/s3/owner.rb', line 4

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



4
5
6
# File 'lib/helene/s3/owner.rb', line 4

def name
  @name
end

Instance Method Details

#to_sObject



11
12
13
# File 'lib/helene/s3/owner.rb', line 11

def to_s
  @name
end