Class: Merge::Ats::EmailAddressRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/merge_ruby_client/ats/types/email_address_request.rb

Overview

# The EmailAddress Object

### Description
The `EmailAddress` object is used to represent a candidate's email address.
### Usage Example
Fetch from the `GET Candidate` endpoint and view their email addresses.

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value: OMIT, email_address_type: OMIT, integration_params: OMIT, linked_account_params: OMIT, additional_properties: nil) ⇒ Merge::Ats::EmailAddressRequest

Parameters:

  • value (String) (defaults to: OMIT)

    The email address.

  • email_address_type (Merge::Ats::EmailAddressTypeEnum) (defaults to: OMIT)

    The type of email address.

    • ‘PERSONAL` - PERSONAL

    • ‘WORK` - WORK

    • ‘OTHER` - OTHER

  • integration_params (Hash{String => Object}) (defaults to: OMIT)
  • linked_account_params (Hash{String => Object}) (defaults to: OMIT)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 43

def initialize(value: OMIT, email_address_type: OMIT, integration_params: OMIT, linked_account_params: OMIT,
               additional_properties: nil)
  @value = value if value != OMIT
  @email_address_type = email_address_type if email_address_type != OMIT
  @integration_params = integration_params if integration_params != OMIT
  @linked_account_params =  if  != OMIT
  @additional_properties = additional_properties
  @_field_set = {
    "value": value,
    "email_address_type": email_address_type,
    "integration_params": integration_params,
    "linked_account_params": 
  }.reject do |_k, v|
    v == OMIT
  end
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    Additional properties unmapped to the current class definition



27
28
29
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 27

def additional_properties
  @additional_properties
end

#email_address_typeMerge::Ats::EmailAddressTypeEnum (readonly)

Returns The type of email address.

  • ‘PERSONAL` - PERSONAL

  • ‘WORK` - WORK

  • ‘OTHER` - OTHER.

Returns:



21
22
23
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 21

def email_address_type
  @email_address_type
end

#integration_paramsHash{String => Object} (readonly)

Returns:

  • (Hash{String => Object})


23
24
25
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 23

def integration_params
  @integration_params
end

#linked_account_paramsHash{String => Object} (readonly)

Returns:

  • (Hash{String => Object})


25
26
27
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 25

def 
  @linked_account_params
end

#valueString (readonly)

Returns The email address.

Returns:

  • (String)

    The email address.



16
17
18
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 16

def value
  @value
end

Class Method Details

.from_json(json_object:) ⇒ Merge::Ats::EmailAddressRequest

Deserialize a JSON object to an instance of EmailAddressRequest

Parameters:

  • json_object (String)

Returns:



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 64

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  value = parsed_json["value"]
  email_address_type = parsed_json["email_address_type"]
  integration_params = parsed_json["integration_params"]
   = parsed_json["linked_account_params"]
  new(
    value: value,
    email_address_type: email_address_type,
    integration_params: integration_params,
    linked_account_params: ,
    additional_properties: struct
  )
end

.validate_raw(obj:) ⇒ Void

Leveraged for Union-type generation, validate_raw attempts to parse the given

hash and check each fields type against the current object's property
definitions.

Parameters:

  • obj (Object)

Returns:

  • (Void)


93
94
95
96
97
98
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 93

def self.validate_raw(obj:)
  obj.value&.is_a?(String) != false || raise("Passed value for field obj.value is not the expected type, validation failed.")
  obj.email_address_type&.is_a?(Merge::Ats::EmailAddressTypeEnum) != false || raise("Passed value for field obj.email_address_type is not the expected type, validation failed.")
  obj.integration_params&.is_a?(Hash) != false || raise("Passed value for field obj.integration_params is not the expected type, validation failed.")
  obj.&.is_a?(Hash) != false || raise("Passed value for field obj.linked_account_params is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of EmailAddressRequest to a JSON object

Returns:

  • (String)


83
84
85
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 83

def to_json(*_args)
  @_field_set&.to_json
end