Sha256: 27a082b735b180801d53f90e4d11cfd59c99fd0f4c9127ea92a00a7ba359498d
Contents?: true
Size: 1.36 KB
Versions: 7
Compression:
Stored size: 1.36 KB
Contents
=begin Agrid Quotes API OpenAPI spec version: 1.0 Generated by: https://github.com/swagger-api/swagger-codegen.git =end require 'date' require_relative 'concerns/swagger_model' module AgridClient class CityWithStateName include SwaggerModel # City name attr_accessor :title # State name attr_accessor :state # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { :'title' => :'title', :'state' => :'state' } end # Attribute type mapping. def self.swagger_types { :'title' => :'String', :'state' => :'String' } end # Initializes the object # @param [Hash] attributes Model attributes in the form of hash 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[:'title'] self.title = attributes[:'title'] end if attributes[:'state'] self.state = attributes[:'state'] end end # Checks equality by comparing each attribute. # @param [Object] Object to be compared def ==(o) return true if self.equal?(o) self.class == o.class && title == o.title && state == o.state end end end
Version data entries
7 entries across 7 versions & 1 rubygems