Class: Io::Flow::V0::Models::CenterSummary

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 = {}) ⇒ CenterSummary

Returns a new instance of CenterSummary.



32046
32047
32048
32049
32050
32051
32052
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32046

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :key], 'CenterSummary')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @key = HttpClient::Preconditions.assert_class('key', opts.delete(:key), String)
  @address = (x = opts.delete(:address); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::ShippingAddress) ? x : ::Io::Flow::V0::Models::ShippingAddress.new(x)))
end

Instance Attribute Details

#addressObject (readonly)

Returns the value of attribute address.



32044
32045
32046
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32044

def address
  @address
end

#idObject (readonly)

Returns the value of attribute id.



32044
32045
32046
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32044

def id
  @id
end

#keyObject (readonly)

Returns the value of attribute key.



32044
32045
32046
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32044

def key
  @key
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



32058
32059
32060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32058

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

#to_hashObject



32062
32063
32064
32065
32066
32067
32068
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32062

def to_hash
  {
    :id => id,
    :key => key,
    :address => address.nil? ? nil : address.to_hash
  }
end

#to_jsonObject



32054
32055
32056
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32054

def to_json
  JSON.dump(to_hash)
end