Class: Io::Flow::V0::Models::RegionSetting
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::RegionSetting
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#region ⇒ Object
readonly
Returns the value of attribute region.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ RegionSetting
constructor
A new instance of RegionSetting.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ RegionSetting
Returns a new instance of RegionSetting.
34850 34851 34852 34853 34854 34855 34856 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34850 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :region, :status], 'RegionSetting') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @region = HttpClient::Preconditions.assert_class('region', opts.delete(:region), String) @status = (x = opts.delete(:status); x.is_a?(::Io::Flow::V0::Models::AvailabilityStatus) ? x : ::Io::Flow::V0::Models::AvailabilityStatus.apply(x)) end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
34848 34849 34850 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34848 def id @id end |
#region ⇒ Object (readonly)
Returns the value of attribute region.
34848 34849 34850 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34848 def region @region end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
34848 34849 34850 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34848 def status @status end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
34862 34863 34864 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34862 def copy(incoming={}) RegionSetting.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
34866 34867 34868 34869 34870 34871 34872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34866 def to_hash { :id => id, :region => region, :status => status.value } end |
#to_json ⇒ Object
34858 34859 34860 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34858 def to_json JSON.dump(to_hash) end |