Sha256: da5869c0d0761bd20763c72d95f5b1c6cba96a42759ddc398f7a551a4d2f50e5
Contents?: true
Size: 1.51 KB
Versions: 7
Compression:
Stored size: 1.51 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 CustomerInput include SwaggerModel attr_accessor :email attr_accessor :phone attr_accessor :name # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { :'email' => :'email', :'phone' => :'phone', :'name' => :'name' } end # Attribute type mapping. def self.swagger_types { :'email' => :'String', :'phone' => :'String', :'name' => :'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[:'email'] self.email = attributes[:'email'] end if attributes[:'phone'] self.phone = attributes[:'phone'] end if attributes[:'name'] self.name = attributes[:'name'] 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 && email == o.email && phone == o.phone && name == o.name end end end
Version data entries
7 entries across 7 versions & 1 rubygems