Class: Aliyun::Oss::Struct::Base
- Inherits:
-
Object
- Object
- Aliyun::Oss::Struct::Base
- Defined in:
- lib/aliyun/oss/struct.rb
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(attributes = {}) ⇒ Base
Returns a new instance of Base.
5 6 7 8 9 10 |
# File 'lib/aliyun/oss/struct.rb', line 5 def initialize(attributes = {}) attributes.each do |key, value| m = "#{Utils.underscore(key)}=".to_sym send(m, value) if self.respond_to?(m) end end |