Class: ChartMogul::Customer
Constant Summary
Constants inherited
from APIResource
APIResource::BACKOFF_FACTOR, APIResource::INTERVAL, APIResource::INTERVAL_RANDOMNESS, APIResource::MAX_INTERVAL, APIResource::RETRY_EXCEPTIONS, APIResource::RETRY_STATUSES, APIResource::THREAD_CONNECTION_KEY
Class Method Summary
collapse
Instance Method Summary
collapse
included, #update!
included
#destroy!, included
#custom!, #custom_without_assign!, included
#create!, included
Methods inherited from APIResource
connection, handle_other_error, handle_request_error, handling_errors, immutable_keys, set_immutable_keys, set_resource_name, set_resource_path, set_resource_root_key
Methods inherited from Object
#allowed_for_write?, #assign_all_attributes, #assign_writeable_attributes, attributes, define_private_writer, define_reader, define_writer, #initialize, #instance_attributes, new_from_json, readonly_attr, #serialize_for_write, #serialized_value_for_attr, writeable_attr, writeable_attributes
Class Method Details
.all(options = {}) ⇒ Object
47
48
49
|
# File 'lib/chartmogul/customer.rb', line 47
def self.all(options = {})
Customers.all(options)
end
|
.find_by_external_id(external_id) ⇒ Object
55
56
57
|
# File 'lib/chartmogul/customer.rb', line 55
def self.find_by_external_id(external_id)
all(external_id: external_id).first
end
|
.merge!(into_uuid:, from_uuid:) ⇒ Object
59
60
61
62
63
64
65
66
|
# File 'lib/chartmogul/customer.rb', line 59
def self.merge!(into_uuid:, from_uuid:)
options = {
from: { customer_uuid: from_uuid },
into: { customer_uuid: into_uuid }
}
custom!(:post, '/v1/customers/merges', options)
true
end
|
.search(email, options = {}) ⇒ Object
51
52
53
|
# File 'lib/chartmogul/customer.rb', line 51
def self.search(email, options = {})
Customers.search(email, options)
end
|
Instance Method Details
#add_custom_attributes!(*custom_attrs) ⇒ Object
117
118
119
120
121
|
# File 'lib/chartmogul/customer.rb', line 117
def add_custom_attributes!(*custom_attrs)
self.custom_attributes = custom_without_assign!(:post,
"/v1/customers/#{uuid}/attributes/custom",
custom: custom_attrs)[:custom]
end
|
105
106
107
108
109
|
# File 'lib/chartmogul/customer.rb', line 105
def add_tags!(*tags)
self.tags = custom_without_assign!(:post,
"/v1/customers/#{uuid}/attributes/tags",
tags: tags)[:tags]
end
|
80
81
82
|
# File 'lib/chartmogul/customer.rb', line 80
def contacts(options = {})
Contacts.all(options.merge(customer_uuid: uuid))
end
|
84
85
86
|
# File 'lib/chartmogul/customer.rb', line 84
def create_contact(options = {})
Contact.create!(options.merge(customer_uuid: uuid))
end
|
#create_note(options = {}) ⇒ Object
92
93
94
|
# File 'lib/chartmogul/customer.rb', line 92
def create_note(options = {})
Note.create!(options.merge(customer_uuid: uuid))
end
|
#custom_attributes ⇒ Object
101
102
103
|
# File 'lib/chartmogul/customer.rb', line 101
def custom_attributes
@attributes[:custom]
end
|
#invoices(options = {}) ⇒ Object
72
73
74
|
# File 'lib/chartmogul/customer.rb', line 72
def invoices(options = {})
@invoices ||= ChartMogul::CustomerInvoices.all(uuid, options)
end
|
#invoices=(invoices_array) ⇒ Object
76
77
78
|
# File 'lib/chartmogul/customer.rb', line 76
def invoices=(invoices_array)
@invoices = ChartMogul::CustomerInvoices.new(customer_uuid: uuid, invoices: invoices_array)
end
|
#merge_into!(other_customer) ⇒ Object
135
136
137
138
139
140
141
142
|
# File 'lib/chartmogul/customer.rb', line 135
def merge_into!(other_customer)
options = {
from: { customer_uuid: uuid },
into: { customer_uuid: other_customer.uuid }
}
custom!(:post, '/v1/customers/merges', options)
true
end
|
#notes(options = {}) ⇒ Object
88
89
90
|
# File 'lib/chartmogul/customer.rb', line 88
def notes(options = {})
Notes.all(options.merge(customer_uuid: uuid))
end
|
#remove_custom_attributes!(*custom_attrs) ⇒ Object
129
130
131
132
133
|
# File 'lib/chartmogul/customer.rb', line 129
def remove_custom_attributes!(*custom_attrs)
self.custom_attributes = custom_without_assign!(:delete,
"/v1/customers/#{uuid}/attributes/custom",
custom: custom_attrs)
end
|
111
112
113
114
115
|
# File 'lib/chartmogul/customer.rb', line 111
def remove_tags!(*tags)
self.tags = custom_without_assign!(:delete,
"/v1/customers/#{uuid}/attributes/tags",
tags: tags)[:tags]
end
|
#subscriptions(options = {}) ⇒ Object
68
69
70
|
# File 'lib/chartmogul/customer.rb', line 68
def subscriptions(options = {})
@subscriptions ||= ChartMogul::Subscription.all(uuid, options)
end
|
97
98
99
|
# File 'lib/chartmogul/customer.rb', line 97
def tags
@attributes[:tags]
end
|
#update_custom_attributes!(custom_attrs = {}) ⇒ Object
123
124
125
126
127
|
# File 'lib/chartmogul/customer.rb', line 123
def update_custom_attributes!(custom_attrs = {})
self.custom_attributes = custom_without_assign!(:put,
"/v1/customers/#{uuid}/attributes/custom",
custom: custom_attrs)[:custom]
end
|