Class: Merge::Ats::EmailAddressRequest
- Inherits:
-
Object
- Object
- Merge::Ats::EmailAddressRequest
- 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
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#email_address_type ⇒ Merge::Ats::EmailAddressTypeEnum
readonly
The type of email address.
- #integration_params ⇒ Hash{String => Object} readonly
- #linked_account_params ⇒ Hash{String => Object} readonly
-
#value ⇒ String
readonly
The email address.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Merge::Ats::EmailAddressRequest
Deserialize a JSON object to an instance of EmailAddressRequest.
-
.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.
Instance Method Summary collapse
- #initialize(value: OMIT, email_address_type: OMIT, integration_params: OMIT, linked_account_params: OMIT, additional_properties: nil) ⇒ Merge::Ats::EmailAddressRequest constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of EmailAddressRequest to a JSON object.
Constructor Details
#initialize(value: OMIT, email_address_type: OMIT, integration_params: OMIT, linked_account_params: OMIT, additional_properties: nil) ⇒ Merge::Ats::EmailAddressRequest
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 = linked_account_params if linked_account_params != OMIT @additional_properties = additional_properties @_field_set = { "value": value, "email_address_type": email_address_type, "integration_params": integration_params, "linked_account_params": linked_account_params }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns 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_type ⇒ Merge::Ats::EmailAddressTypeEnum (readonly)
Returns The type of email address.
-
‘PERSONAL` - PERSONAL
-
‘WORK` - WORK
-
‘OTHER` - OTHER.
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_params ⇒ Hash{String => Object} (readonly)
23 24 25 |
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 23 def integration_params @integration_params end |
#linked_account_params ⇒ Hash{String => Object} (readonly)
25 26 27 |
# File 'lib/merge_ruby_client/ats/types/email_address_request.rb', line 25 def linked_account_params @linked_account_params end |
#value ⇒ String (readonly)
Returns 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
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"] linked_account_params = parsed_json["linked_account_params"] new( value: value, email_address_type: email_address_type, integration_params: integration_params, linked_account_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.
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.linked_account_params&.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
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 |