Class: Io::Flow::V0::Models::AttributeForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::AttributeForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#intent ⇒ Object
readonly
Returns the value of attribute intent.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#label ⇒ Object
readonly
Returns the value of attribute label.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ AttributeForm
constructor
A new instance of AttributeForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ AttributeForm
Returns a new instance of AttributeForm.
11889 11890 11891 11892 11893 11894 11895 11896 11897 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11889 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:key, :options], 'AttributeForm') @key = HttpClient::Preconditions.assert_class('key', opts.delete(:key), String) @options = (x = opts.delete(:options); x.is_a?(::Io::Flow::V0::Models::Options) ? x : ::Io::Flow::V0::Models::Options.new(x)) @label = (x = opts.delete(:label); x.nil? ? nil : HttpClient::Preconditions.assert_class('label', x, String)) @intent = (x = opts.delete(:intent); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::AttributeIntent) ? x : ::Io::Flow::V0::Models::AttributeIntent.apply(x))) @type = (x = opts.delete(:type); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::AttributeDataType) ? x : ::Io::Flow::V0::Models::AttributeDataType.apply(x))) end |
Instance Attribute Details
#intent ⇒ Object (readonly)
Returns the value of attribute intent.
11887 11888 11889 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11887 def intent @intent end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
11887 11888 11889 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11887 def key @key end |
#label ⇒ Object (readonly)
Returns the value of attribute label.
11887 11888 11889 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11887 def label @label end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
11887 11888 11889 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11887 def @options end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
11887 11888 11889 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11887 def type @type end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
11903 11904 11905 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11903 def copy(incoming={}) AttributeForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
11907 11908 11909 11910 11911 11912 11913 11914 11915 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11907 def to_hash { :key => key, :options => .to_hash, :label => label, :intent => intent.nil? ? nil : intent.value, :type => type.nil? ? nil : type.value } end |
#to_json ⇒ Object
11899 11900 11901 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11899 def to_json JSON.dump(to_hash) end |