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.



24378
24379
24380
24381
24382
24383
24384
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24378

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

#idObject (readonly)

Returns the value of attribute id.



24376
24377
24378
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24376

def id
  @id
end

#regionObject (readonly)

Returns the value of attribute region.



24376
24377
24378
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24376

def region
  @region
end

#statusObject (readonly)

Returns the value of attribute status.



24376
24377
24378
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24376

def status
  @status
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



24390
24391
24392
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24390

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

#to_hashObject



24394
24395
24396
24397
24398
24399
24400
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24394

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

#to_jsonObject



24386
24387
24388
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24386

def to_json
  JSON.dump(to_hash)
end