Class: ContextIO::EmailAddress

Inherits:
Object
  • Object
show all
Includes:
CallHelpers
Defined in:
lib/context_io/account/email_address.rb

Constant Summary collapse

EMAIL_ATTRS =
%I(validated primary resource_url)

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from CallHelpers

#build_url, #call_api_return_new_object, #call_api_return_updated_object, #delete, #get, #get_request, #parse_response, #return_post_api_call_made, #success?, #validate_params

Methods included from CollectionHelper

#collection_return, #contact_collection_return

Constructor Details

#initialize(parent:, identifier: nil, response: nil, status: nil, success: nil, api_call_made: nil) ⇒ EmailAddress

Returns a new instance of EmailAddress.



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/context_io/account/email_address.rb', line 12

def initialize(parent:,
               identifier: nil,
               response: nil,
               status: nil,
               success: nil,
               api_call_made: nil)
  @parent = parent
  @connection = parent.connection
  @email = identifier
  @status = status
  @success = success
  @api_call_made = api_call_made
  if response
    parse_response(response)
  end
end

Instance Attribute Details

#api_call_madeObject

Returns the value of attribute api_call_made.



10
11
12
# File 'lib/context_io/account/email_address.rb', line 10

def api_call_made
  @api_call_made
end

Instance Method Details

#call_urlObject



29
30
31
# File 'lib/context_io/account/email_address.rb', line 29

def call_url
  build_url("email_addresses", email)
end