Class: ProcessOut::Customer
- Inherits:
-
Object
- Object
- ProcessOut::Customer
- Defined in:
- lib/processout/customer.rb
Instance Attribute Summary collapse
-
#address1 ⇒ Object
Returns the value of attribute address1.
-
#address2 ⇒ Object
Returns the value of attribute address2.
-
#balance ⇒ Object
Returns the value of attribute balance.
-
#city ⇒ Object
Returns the value of attribute city.
-
#country_code ⇒ Object
Returns the value of attribute country_code.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#currency ⇒ Object
Returns the value of attribute currency.
-
#email ⇒ Object
Returns the value of attribute email.
-
#first_name ⇒ Object
Returns the value of attribute first_name.
-
#has_pin ⇒ Object
Returns the value of attribute has_pin.
-
#id ⇒ Object
Returns the value of attribute id.
-
#last_name ⇒ Object
Returns the value of attribute last_name.
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#project ⇒ Object
Returns the value of attribute project.
-
#sandbox ⇒ Object
Returns the value of attribute sandbox.
-
#state ⇒ Object
Returns the value of attribute state.
-
#zip ⇒ Object
Returns the value of attribute zip.
Instance Method Summary collapse
-
#all(options = nil) ⇒ Object
Get all the customers.
-
#create(options = nil) ⇒ Object
Create a new customer.
-
#delete(options = nil) ⇒ Object
Delete the customer.
-
#fill_with_data(data) ⇒ Object
- Fills the object with data coming from the API Params:
data -
Hashof data coming from the API.
- Fills the object with data coming from the API Params:
-
#find(customer_id, options = nil) ⇒ Object
Find a customer by its ID.
-
#initialize(client) ⇒ Customer
constructor
- Initializes the Customer object Params:
client -
ProcessOutclient instance.
- Initializes the Customer object Params:
-
#save(options = nil) ⇒ Object
Save the updated customer attributes.
-
#subscriptions(options = nil) ⇒ Object
Get the subscriptions belonging to the customer.
-
#tokens(options = nil) ⇒ Object
Get the customer’s tokens.
-
#transactions(options = nil) ⇒ Object
Get the transactions belonging to the customer.
Constructor Details
#initialize(client) ⇒ Customer
Initializes the Customer object Params:
client-
ProcessOutclient instance
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/processout/customer.rb', line 108 def initialize(client) @client = client @id = "" @project = nil @email = "" @first_name = "" @last_name = "" @address1 = "" @address2 = "" @city = "" @state = "" @zip = "" @country_code = "" @balance = "0" @currency = "" = Hash.new @has_pin = false @sandbox = false @created_at = "" end |
Instance Attribute Details
#address1 ⇒ Object
Returns the value of attribute address1.
15 16 17 |
# File 'lib/processout/customer.rb', line 15 def address1 @address1 end |
#address2 ⇒ Object
Returns the value of attribute address2.
16 17 18 |
# File 'lib/processout/customer.rb', line 16 def address2 @address2 end |
#balance ⇒ Object
Returns the value of attribute balance.
21 22 23 |
# File 'lib/processout/customer.rb', line 21 def balance @balance end |
#city ⇒ Object
Returns the value of attribute city.
17 18 19 |
# File 'lib/processout/customer.rb', line 17 def city @city end |
#country_code ⇒ Object
Returns the value of attribute country_code.
20 21 22 |
# File 'lib/processout/customer.rb', line 20 def country_code @country_code end |
#created_at ⇒ Object
Returns the value of attribute created_at.
26 27 28 |
# File 'lib/processout/customer.rb', line 26 def created_at @created_at end |
#currency ⇒ Object
Returns the value of attribute currency.
22 23 24 |
# File 'lib/processout/customer.rb', line 22 def currency @currency end |
#email ⇒ Object
Returns the value of attribute email.
12 13 14 |
# File 'lib/processout/customer.rb', line 12 def email @email end |
#first_name ⇒ Object
Returns the value of attribute first_name.
13 14 15 |
# File 'lib/processout/customer.rb', line 13 def first_name @first_name end |
#has_pin ⇒ Object
Returns the value of attribute has_pin.
24 25 26 |
# File 'lib/processout/customer.rb', line 24 def has_pin @has_pin end |
#id ⇒ Object
Returns the value of attribute id.
10 11 12 |
# File 'lib/processout/customer.rb', line 10 def id @id end |
#last_name ⇒ Object
Returns the value of attribute last_name.
14 15 16 |
# File 'lib/processout/customer.rb', line 14 def last_name @last_name end |
#metadata ⇒ Object
Returns the value of attribute metadata.
23 24 25 |
# File 'lib/processout/customer.rb', line 23 def end |
#project ⇒ Object
Returns the value of attribute project.
11 12 13 |
# File 'lib/processout/customer.rb', line 11 def project @project end |
#sandbox ⇒ Object
Returns the value of attribute sandbox.
25 26 27 |
# File 'lib/processout/customer.rb', line 25 def sandbox @sandbox end |
#state ⇒ Object
Returns the value of attribute state.
18 19 20 |
# File 'lib/processout/customer.rb', line 18 def state @state end |
#zip ⇒ Object
Returns the value of attribute zip.
19 20 21 |
# File 'lib/processout/customer.rb', line 19 def zip @zip end |
Instance Method Details
#all(options = nil) ⇒ Object
Get all the customers. Params:
options-
Hashof options
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
# File 'lib/processout/customer.rb', line 277 def all( = nil) request = Request.new(@client) path = "/customers" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new a = Array.new body = response.body for v in body['customers'] tmp = Customer(@client) tmp.fill_with_data(v) a.push(tmp) end return_values.push(a) return_values[0] end |
#create(options = nil) ⇒ Object
Create a new customer. Params:
options-
Hashof options
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
# File 'lib/processout/customer.rb', line 305 def create( = nil) request = Request.new(@client) path = "/customers" data = { "balance": @balance, "currency": @currency, "email": @email, "first_name": @first_name, "last_name": @last_name, "address1": @address1, "address2": @address2, "city": @city, "state": @state, "zip": @zip, "country_code": @country_code, "metadata": } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["customer"] return_values.push(self.fill_with_data(body)) return_values[0] end |
#delete(options = nil) ⇒ Object
Delete the customer. Params:
options-
Hashof options
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 |
# File 'lib/processout/customer.rb', line 400 def delete( = nil) request = Request.new(@client) path = "/customers/" + CGI.escape(@id) + "" data = { } response = Response.new(request.delete(path, data, )) return_values = Array.new return_values.push(response.success) return_values[0] end |
#fill_with_data(data) ⇒ Object
Fills the object with data coming from the API Params:
data-
Hashof data coming from the API
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/processout/customer.rb', line 134 def fill_with_data(data) if data.include? "id" @id = data["id"] end if data.include? "project" @project = data["project"] end if data.include? "email" @email = data["email"] end if data.include? "first_name" @first_name = data["first_name"] end if data.include? "last_name" @last_name = data["last_name"] end if data.include? "address1" @address1 = data["address1"] end if data.include? "address2" @address2 = data["address2"] end if data.include? "city" @city = data["city"] end if data.include? "state" @state = data["state"] end if data.include? "zip" @zip = data["zip"] end if data.include? "country_code" @country_code = data["country_code"] end if data.include? "balance" @balance = data["balance"] end if data.include? "currency" @currency = data["currency"] end if data.include? "metadata" = data["metadata"] end if data.include? "has_pin" @has_pin = data["has_pin"] end if data.include? "sandbox" @sandbox = data["sandbox"] end if data.include? "created_at" @created_at = data["created_at"] end self end |
#find(customer_id, options = nil) ⇒ Object
Find a customer by its ID. Params:
customer_id-
ID of the customer
options-
Hashof options
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
# File 'lib/processout/customer.rb', line 341 def find(customer_id, = nil) request = Request.new(@client) path = "/customers/" + CGI.escape(customer_id) + "" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new body = response.body body = body["customer"] obj = Customer.new(@client) return_values.push(obj.fill_with_data(body)) return_values[0] end |
#save(options = nil) ⇒ Object
Save the updated customer attributes. Params:
options-
Hashof options
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 |
# File 'lib/processout/customer.rb', line 366 def save( = nil) request = Request.new(@client) path = "/customers/" + CGI.escape(@id) + "" data = { "balance": @balance, "email": @email, "first_name": @first_name, "last_name": @last_name, "address1": @address1, "address2": @address2, "city": @city, "state": @state, "zip": @zip, "country_code": @country_code, "metadata": } response = Response.new(request.put(path, data, )) return_values = Array.new body = response.body body = body["customer"] return_values.push(self.fill_with_data(body)) return_values[0] end |
#subscriptions(options = nil) ⇒ Object
Get the subscriptions belonging to the customer. Params:
options-
Hashof options
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
# File 'lib/processout/customer.rb', line 193 def subscriptions( = nil) request = Request.new(@client) path = "/customers/" + CGI.escape(@id) + "/subscriptions" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new a = Array.new body = response.body for v in body['subscriptions'] tmp = Subscription(@client) tmp.fill_with_data(v) a.push(tmp) end return_values.push(a) return_values[0] end |
#tokens(options = nil) ⇒ Object
Get the customer’s tokens. Params:
options-
Hashof options
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
# File 'lib/processout/customer.rb', line 221 def tokens( = nil) request = Request.new(@client) path = "/customers/" + CGI.escape(@id) + "/tokens" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new a = Array.new body = response.body for v in body['tokens'] tmp = Token(@client) tmp.fill_with_data(v) a.push(tmp) end return_values.push(a) return_values[0] end |
#transactions(options = nil) ⇒ Object
Get the transactions belonging to the customer. Params:
options-
Hashof options
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/processout/customer.rb', line 249 def transactions( = nil) request = Request.new(@client) path = "/customers/" + CGI.escape(@id) + "/transactions" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new a = Array.new body = response.body for v in body['transactions'] tmp = Transaction(@client) tmp.fill_with_data(v) a.push(tmp) end return_values.push(a) return_values[0] end |