Class: Io::Flow::V0::Models::RegionSetting

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ RegionSetting

Returns a new instance of RegionSetting.



36670
36671
36672
36673
36674
36675
36676
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36670

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

#idObject (readonly)

Returns the value of attribute id.



36668
36669
36670
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36668

def id
  @id
end

#regionObject (readonly)

Returns the value of attribute region.



36668
36669
36670
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36668

def region
  @region
end

#statusObject (readonly)

Returns the value of attribute status.



36668
36669
36670
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36668

def status
  @status
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



36682
36683
36684
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36682

def copy(incoming={})
  RegionSetting.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



36686
36687
36688
36689
36690
36691
36692
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36686

def to_hash
  {
    :id => id,
    :region => region,
    :status => status.value
  }
end

#to_jsonObject



36678
36679
36680
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36678

def to_json
  JSON.dump(to_hash)
end