Class: Io::Flow::V0::Models::ActionUndefinedType
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Attributes inherited from Action
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ActionUndefinedType
constructor
A new instance of ActionUndefinedType.
- #subtype_to_hash ⇒ Object
- #to_hash ⇒ Object
Methods inherited from Action
Constructor Details
#initialize(incoming = {}) ⇒ ActionUndefinedType
Returns a new instance of ActionUndefinedType.
9358 9359 9360 9361 9362 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9358 def initialize(incoming={}) super(:type => 'undefined_type') opts = HttpClient::Helper.symbolize_keys(incoming) @name = HttpClient::Preconditions.assert_class('name', opts.delete(:type), String) end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
9356 9357 9358 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9356 def name @name end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
9368 9369 9370 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9368 def copy(incoming={}) raise 'Operation not supported for undefined type' end |
#subtype_to_hash ⇒ Object
9364 9365 9366 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9364 def subtype_to_hash raise 'Unable to serialize undefined type to json' end |
#to_hash ⇒ Object
9372 9373 9374 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 9372 def to_hash raise 'Operation not supported for undefined type' end |