Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 718 Bytes

EmailAddress.md

File metadata and controls

22 lines (16 loc) · 718 Bytes

MergeATSClient::EmailAddress

Properties

Name Type Description Notes
value String The email address. [optional]
email_address_type EmailAddressTypeEnum The type of email address. * `PERSONAL` - PERSONAL * `WORK` - WORK * `OTHER` - OTHER [optional]
modified_at Time This is the datetime that this object was last updated by Merge [optional][readonly]

Example

require 'merge_ats_client'

instance = MergeATSClient::EmailAddress.new(
  value: merge_is_hiring@merge.dev,
  email_address_type: PERSONAL,
  modified_at: 2021-10-16T00:00Z
)