Class: Io::Flow::V0::Models::OrderBuilderDestinationCountryForm

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

Returns a new instance of OrderBuilderDestinationCountryForm.



47597
47598
47599
47600
47601
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47597

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:country], 'OrderBuilderDestinationCountryForm')
  @country = HttpClient::Preconditions.assert_class('country', opts.delete(:country), String)
end

Instance Attribute Details

#countryObject (readonly)

Returns the value of attribute country.



47595
47596
47597
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47595

def country
  @country
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



47607
47608
47609
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47607

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

#to_hashObject



47611
47612
47613
47614
47615
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47611

def to_hash
  {
    :country => country
  }
end

#to_jsonObject



47603
47604
47605
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 47603

def to_json
  JSON.dump(to_hash)
end