Class: GoCardlessPro::Resources::CustomerNotification

Inherits:
Object
  • Object
show all
Defined in:
lib/gocardless_pro/resources/customer_notification.rb

Overview

Customer Notifications represent the notification which is due to be sent to a customer after an event has happened. The event, the resource and the customer to be notified are all identified in the ‘links` property.

Note that these are ephemeral records - once the notification has been actioned in some way, it is no longer visible using this API.

<p class=“restricted-notice”><strong>Restricted</strong>: This API is currently only available for approved integrators - please <a href=“[email protected]”>get in touch</a> if you would like to use this API.</p>

Defined Under Namespace

Classes: Links

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object, response = nil) ⇒ CustomerNotification

Initialize a customer_notification resource instance

Parameters:

  • object (Hash)

    an object returned from the API



40
41
42
43
44
45
46
47
48
49
50
# File 'lib/gocardless_pro/resources/customer_notification.rb', line 40

def initialize(object, response = nil)
  @object = object

  @action_taken = object['action_taken']
  @action_taken_at = object['action_taken_at']
  @action_taken_by = object['action_taken_by']
  @id = object['id']
  @links = object['links']
  @type = object['type']
  @response = response
end

Instance Attribute Details

#action_takenObject (readonly)

Returns the value of attribute action_taken.



32
33
34
# File 'lib/gocardless_pro/resources/customer_notification.rb', line 32

def action_taken
  @action_taken
end

#action_taken_atObject (readonly)

Returns the value of attribute action_taken_at.



33
34
35
# File 'lib/gocardless_pro/resources/customer_notification.rb', line 33

def action_taken_at
  @action_taken_at
end

#action_taken_byObject (readonly)

Returns the value of attribute action_taken_by.



34
35
36
# File 'lib/gocardless_pro/resources/customer_notification.rb', line 34

def action_taken_by
  @action_taken_by
end

#idObject (readonly)

Returns the value of attribute id.



35
36
37
# File 'lib/gocardless_pro/resources/customer_notification.rb', line 35

def id
  @id
end

#typeObject (readonly)

Returns the value of attribute type.



36
37
38
# File 'lib/gocardless_pro/resources/customer_notification.rb', line 36

def type
  @type
end

Instance Method Details

#api_responseObject



52
53
54
# File 'lib/gocardless_pro/resources/customer_notification.rb', line 52

def api_response
  ApiResponse.new(@response)
end

Return the links that the resource has



57
58
59
# File 'lib/gocardless_pro/resources/customer_notification.rb', line 57

def links
  @customer_notification_links ||= Links.new(@links)
end

#to_hObject

Provides the customer_notification resource as a hash of all its readable attributes



62
63
64
# File 'lib/gocardless_pro/resources/customer_notification.rb', line 62

def to_h
  @object
end