Class: Io::Flow::V0::Models::InputSpecification
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::InputSpecification
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#display_text ⇒ Object
readonly
Returns the value of attribute display_text.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ InputSpecification
constructor
A new instance of InputSpecification.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ InputSpecification
Returns a new instance of InputSpecification.
31099 31100 31101 31102 31103 31104 31105 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31099 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:type, :name], 'InputSpecification') @type = (x = opts.delete(:type); x.is_a?(::Io::Flow::V0::Models::InputSpecificationType) ? x : ::Io::Flow::V0::Models::InputSpecificationType.apply(x)) @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String) @display_text = (x = opts.delete(:display_text); x.nil? ? nil : HttpClient::Preconditions.assert_class('display_text', x, String)) end |
Instance Attribute Details
#display_text ⇒ Object (readonly)
Returns the value of attribute display_text.
31097 31098 31099 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31097 def display_text @display_text end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
31097 31098 31099 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31097 def name @name end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
31097 31098 31099 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31097 def type @type end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
31111 31112 31113 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31111 def copy(incoming={}) InputSpecification.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
31115 31116 31117 31118 31119 31120 31121 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31115 def to_hash { :type => type.value, :name => name, :display_text => display_text } end |
#to_json ⇒ Object
31107 31108 31109 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31107 def to_json JSON.dump(to_hash) end |