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



34472
34473
34474
34475
34476
34477
34478
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34472

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.



34470
34471
34472
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34470

def id
  @id
end

#regionObject (readonly)

Returns the value of attribute region.



34470
34471
34472
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34470

def region
  @region
end

#statusObject (readonly)

Returns the value of attribute status.



34470
34471
34472
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34470

def status
  @status
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



34484
34485
34486
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34484

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

#to_hashObject



34488
34489
34490
34491
34492
34493
34494
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34488

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

#to_jsonObject



34480
34481
34482
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34480

def to_json
  JSON.dump(to_hash)
end