Class: WebPay::DeletedResponse
- Defined in:
- lib/webpay/data_types.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Class Method Summary collapse
Instance Method Summary collapse
-
#deleted ⇒ Object
attributes accessors.
-
#initialize(hash = {}) ⇒ DeletedResponse
constructor
A new instance of DeletedResponse.
Methods inherited from Entity
Constructor Details
#initialize(hash = {}) ⇒ DeletedResponse
Returns a new instance of DeletedResponse.
2401 2402 2403 2404 |
# File 'lib/webpay/data_types.rb', line 2401 def initialize(hash = {}) hash = normalize_hash(hash) @attributes = hash end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
2394 2395 2396 |
# File 'lib/webpay/data_types.rb', line 2394 def attributes @attributes end |
Class Method Details
.fields ⇒ Object
2396 2397 2398 |
# File 'lib/webpay/data_types.rb', line 2396 def self.fields ['deleted'] end |
Instance Method Details
#deleted ⇒ Object
attributes accessors
2409 2410 2411 |
# File 'lib/webpay/data_types.rb', line 2409 def deleted attributes['deleted'] end |