class AgridClient::LeadInput

Attributes

company_id[RW]
customer[RW]
message[RW]
partner_id[RW]

The id which will identify your leads

quote_id[RW]

Public Class Methods

attribute_map() click to toggle source

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

# File lib/agrid_client/models/lead_input.rb, line 32
def self.attribute_map
  {
    :'message' => :'message',
    :'partner_id' => :'partner_id',
    :'quote_id' => :'quote_id',
    :'company_id' => :'company_id',
    :'customer' => :'customer'
  }
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/lead_input.rb, line 55
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[:'message']
    self.message = attributes[:'message']
  end
  if attributes[:'partner_id']
    self.partner_id = attributes[:'partner_id']
  end
  if attributes[:'quote_id']
    self.quote_id = attributes[:'quote_id']
  end
  if attributes[:'company_id']
    self.company_id = attributes[:'company_id']
  end
  if attributes[:'customer']
    self.customer = attributes[:'customer']
  end
end
swagger_types() click to toggle source

Attribute type mapping.

# File lib/agrid_client/models/lead_input.rb, line 43
def self.swagger_types
  {
    :'message' => :'String',
    :'partner_id' => :'String',
    :'quote_id' => :'String',
    :'company_id' => :'String',
    :'customer' => :'CustomerInput'
  }
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/lead_input.rb, line 80
def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      message == o.message &&
      partner_id == o.partner_id &&
      quote_id == o.quote_id &&
      company_id == o.company_id &&
      customer == o.customer
end