class AgridClient::CityCompany

Attributes

city[RW]

The city

freight[RW]

How much the company charge to attend this city

Public Class Methods

attribute_map() click to toggle source

Attribute mapping from ruby-style variable name to JSON key.

# File lib/agrid_client/models/city_company.rb, line 27
def self.attribute_map
  {
    :'city' => :'city',
    :'freight' => :'freight'
  }
end
new(attributes = {}) click to toggle source

Initializes the object @param [Hash] attributes Model attributes in the form of hash

# File lib/agrid_client/models/city_company.rb, line 44
def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}

  if attributes[:'city']
    self.city = attributes[:'city']
  end
  if attributes[:'freight']
    self.freight = attributes[:'freight']
  end
end
swagger_types() click to toggle source

Attribute type mapping.

# File lib/agrid_client/models/city_company.rb, line 35
def self.swagger_types
  {
    :'city' => :'CityWithFullState',
    :'freight' => :'Float'
  }
end

Public Instance Methods

==(o) click to toggle source

Checks equality by comparing each attribute. @param [Object] Object to be compared

# File lib/agrid_client/models/city_company.rb, line 60
def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      city == o.city &&
      freight == o.freight
end