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.
25288 25289 25290 25291 25292 25293 25294 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25288 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 = (x = opts.delete(:region); x.is_a?(::Io::Flow::V0::Models::Region) ? x : ::Io::Flow::V0::Models::Region.new(x)) @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.
25286 25287 25288 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25286 def id @id end |
#region ⇒ Object (readonly)
Returns the value of attribute region.
25286 25287 25288 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25286 def region @region end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
25286 25287 25288 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25286 def status @status end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
25300 25301 25302 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25300 def copy(incoming={}) RegionSetting.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
25304 25305 25306 25307 25308 25309 25310 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25304 def to_hash { :id => id, :region => region.to_hash, :status => status.value } end |
#to_json ⇒ Object
25296 25297 25298 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 25296 def to_json JSON.dump(to_hash) end |