Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 722 Bytes

File metadata and controls

30 lines (24 loc) · 722 Bytes

SendX::IdentifyRequest

Properties

Name Type Description Notes
email String
first_name String [optional]
last_name String [optional]
company String [optional]
custom_fields Hash<String, String> [optional]
tags Array<String> [optional]
new_email String New email when updating existing contact [optional]

Example

require 'sendx-ruby-sdk'

instance = SendX::IdentifyRequest.new(
  email: null,
  first_name: null,
  last_name: null,
  company: null,
  custom_fields: null,
  tags: null,
  new_email: null
)