class OpenApiSDK::Models::Components::Customer

A customer in an organization.

def ==(other)

def ==(other)
  return false unless other.is_a?(self.class)
  return false unless @id == other.id
  return false unless @created_at == other.created_at
  return false unless @metadata == other.metadata
  return false unless @email == other.email
  return false unless @email_verified == other.email_verified
  return false unless @organization_id == other.organization_id
  return false unless @avatar_url == other.avatar_url
  return false unless @modified_at == other.modified_at
  return false unless @external_id == other.external_id
  return false unless @name == other.name
  return false unless @billing_address == other.billing_address
  return false unless @tax_id == other.tax_id
  return false unless @deleted_at == other.deleted_at
  return false unless @type == other.type
  true
end

def initialize(

def initialize(
  id:,
  created_at:,
  metadata:,
  email:,
  email_verified:,
  organization_id:,
  avatar_url:,
  modified_at: nil,
  external_id: nil,
  name: nil,
  billing_address: nil,
  tax_id: nil,
  deleted_at: nil,
  type: nil
)
  @id = id
  @created_at = created_at
  @metadata = metadata
  @email = email
  @email_verified = email_verified
  @organization_id = organization_id
  @avatar_url = avatar_url
  @modified_at = modified_at
  @external_id = external_id
  @name = name
  @billing_address = billing_address
  @tax_id = tax_id
  @deleted_at = deleted_at
  @type = type
end