class AgridClient::Phone
Attributes
number[RW]
Company
phone number
person_in_charge[RW]
Company
phone number
phone_type[RW]
Company
phone number
Public Class Methods
attribute_map()
click to toggle source
Attribute mapping from ruby-style variable name to JSON key.
# File lib/agrid_client/models/phone.rb, line 24 def self.attribute_map { :'number' => :'number', :'person_in_charge' => :'person_in_charge', :'phone_type' => :'phone_type' } 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/phone.rb, line 43 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} self.number = attributes[:'number'] if attributes[:'number'] self.person_in_charge = attributes[:'person_in_charge'] if attributes[:'person_in_charge'] self.phone_type = attributes[:'phone_type'] if attributes[:'phone_type'] end
swagger_types()
click to toggle source
Attribute type mapping.
# File lib/agrid_client/models/phone.rb, line 33 def self.swagger_types { :'number' => :'String', :'person_in_charge' => :'String', :'phone_type' => :'String' } 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/phone.rb, line 57 def ==(o) return true if self.equal?(o) self.class == o.class && number == o.number && person_in_charge == o.person_in_charge && phone_type == o.phone_type end