Class: ProcessOut::Invoice
- Inherits:
-
Object
- Object
- ProcessOut::Invoice
- Defined in:
- lib/processout/invoice.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
Returns the value of attribute amount.
-
#cancel_url ⇒ Object
Returns the value of attribute cancel_url.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#currency ⇒ Object
Returns the value of attribute currency.
-
#customer ⇒ Object
Returns the value of attribute customer.
-
#customer_id ⇒ Object
Returns the value of attribute customer_id.
-
#details ⇒ Object
Returns the value of attribute details.
-
#device ⇒ Object
Returns the value of attribute device.
-
#id ⇒ Object
Returns the value of attribute id.
-
#merchant_initiator_type ⇒ Object
Returns the value of attribute merchant_initiator_type.
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#name ⇒ Object
Returns the value of attribute name.
-
#project ⇒ Object
Returns the value of attribute project.
-
#project_id ⇒ Object
Returns the value of attribute project_id.
-
#return_url ⇒ Object
Returns the value of attribute return_url.
-
#risk ⇒ Object
Returns the value of attribute risk.
-
#sandbox ⇒ Object
Returns the value of attribute sandbox.
-
#shipping ⇒ Object
Returns the value of attribute shipping.
-
#statement_descriptor ⇒ Object
Returns the value of attribute statement_descriptor.
-
#statement_descriptor_city ⇒ Object
Returns the value of attribute statement_descriptor_city.
-
#statement_descriptor_company ⇒ Object
Returns the value of attribute statement_descriptor_company.
-
#statement_descriptor_phone ⇒ Object
Returns the value of attribute statement_descriptor_phone.
-
#statement_descriptor_url ⇒ Object
Returns the value of attribute statement_descriptor_url.
-
#subscription ⇒ Object
Returns the value of attribute subscription.
-
#subscription_id ⇒ Object
Returns the value of attribute subscription_id.
-
#token ⇒ Object
Returns the value of attribute token.
-
#token_id ⇒ Object
Returns the value of attribute token_id.
-
#transaction ⇒ Object
Returns the value of attribute transaction.
-
#transaction_id ⇒ Object
Returns the value of attribute transaction_id.
-
#url ⇒ Object
Returns the value of attribute url.
-
#webhook_url ⇒ Object
Returns the value of attribute webhook_url.
Instance Method Summary collapse
-
#all(options = {}) ⇒ Object
Get all the invoices.
-
#assign_customer(customer_id, options = {}) ⇒ Object
Assign a customer to the invoice.
-
#authorize(source, options = {}) ⇒ Object
- Authorize the invoice using the given source (customer or token) Params:
source -
Source used to authorization the payment.
- Authorize the invoice using the given source (customer or token) Params:
-
#capture(source, options = {}) ⇒ Object
- Capture the invoice using the given source (customer or token) Params:
source -
Source used to authorization the payment.
- Capture the invoice using the given source (customer or token) Params:
-
#create(options = {}) ⇒ Object
Create a new invoice.
-
#fetch_customer(options = {}) ⇒ Object
Get the customer linked to the invoice.
-
#fetch_transaction(options = {}) ⇒ Object
Get the transaction of the invoice.
-
#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(invoice_id, options = {}) ⇒ Object
Find an invoice by its ID.
-
#initialize(client, data = {}) ⇒ Invoice
constructor
- Initializes the Invoice object Params:
client ProcessOutclient instancedata-
data that can be used to fill the object.
- Initializes the Invoice object Params:
-
#initiate_three_d_s(source, options = {}) ⇒ Object
- Initiate a 3-D Secure authentication Params:
source -
Source used to initiate the 3-D Secure authentication.
- Initiate a 3-D Secure authentication Params:
-
#new(data = {}) ⇒ Object
Create a new Invoice using the current client.
-
#prefill(data) ⇒ Object
- Prefills the object with the data passed as parameters Params:
data -
Hashof data.
- Prefills the object with the data passed as parameters Params:
-
#void(options = {}) ⇒ Object
- Void the invoice Params:
options -
Hashof options.
- Void the invoice Params:
Constructor Details
#initialize(client, data = {}) ⇒ Invoice
Initializes the Invoice object Params:
client-
ProcessOutclient instance data-
data that can be used to fill the object
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
# File 'lib/processout/invoice.rb', line 284 def initialize(client, data = {}) @client = client self.id = data.fetch(:id, nil) self.project = data.fetch(:project, nil) self.project_id = data.fetch(:project_id, nil) self.transaction = data.fetch(:transaction, nil) self.transaction_id = data.fetch(:transaction_id, nil) self.customer = data.fetch(:customer, nil) self.customer_id = data.fetch(:customer_id, nil) self.subscription = data.fetch(:subscription, nil) self.subscription_id = data.fetch(:subscription_id, nil) self.token = data.fetch(:token, nil) self.token_id = data.fetch(:token_id, nil) self.details = data.fetch(:details, nil) self.url = data.fetch(:url, nil) self.name = data.fetch(:name, nil) self.amount = data.fetch(:amount, nil) self.currency = data.fetch(:currency, nil) self.merchant_initiator_type = data.fetch(:merchant_initiator_type, nil) self.statement_descriptor = data.fetch(:statement_descriptor, nil) self.statement_descriptor_phone = data.fetch(:statement_descriptor_phone, nil) self.statement_descriptor_city = data.fetch(:statement_descriptor_city, nil) self.statement_descriptor_company = data.fetch(:statement_descriptor_company, nil) self.statement_descriptor_url = data.fetch(:statement_descriptor_url, nil) self. = data.fetch(:metadata, nil) self.return_url = data.fetch(:return_url, nil) self.cancel_url = data.fetch(:cancel_url, nil) self.webhook_url = data.fetch(:webhook_url, nil) self.sandbox = data.fetch(:sandbox, nil) self.created_at = data.fetch(:created_at, nil) self.risk = data.fetch(:risk, nil) self.shipping = data.fetch(:shipping, nil) self.device = data.fetch(:device, nil) end |
Instance Attribute Details
#amount ⇒ Object
Returns the value of attribute amount.
24 25 26 |
# File 'lib/processout/invoice.rb', line 24 def amount @amount end |
#cancel_url ⇒ Object
Returns the value of attribute cancel_url.
34 35 36 |
# File 'lib/processout/invoice.rb', line 34 def cancel_url @cancel_url end |
#created_at ⇒ Object
Returns the value of attribute created_at.
37 38 39 |
# File 'lib/processout/invoice.rb', line 37 def created_at @created_at end |
#currency ⇒ Object
Returns the value of attribute currency.
25 26 27 |
# File 'lib/processout/invoice.rb', line 25 def currency @currency end |
#customer ⇒ Object
Returns the value of attribute customer.
15 16 17 |
# File 'lib/processout/invoice.rb', line 15 def customer @customer end |
#customer_id ⇒ Object
Returns the value of attribute customer_id.
16 17 18 |
# File 'lib/processout/invoice.rb', line 16 def customer_id @customer_id end |
#details ⇒ Object
Returns the value of attribute details.
21 22 23 |
# File 'lib/processout/invoice.rb', line 21 def details @details end |
#device ⇒ Object
Returns the value of attribute device.
40 41 42 |
# File 'lib/processout/invoice.rb', line 40 def device @device end |
#id ⇒ Object
Returns the value of attribute id.
10 11 12 |
# File 'lib/processout/invoice.rb', line 10 def id @id end |
#merchant_initiator_type ⇒ Object
Returns the value of attribute merchant_initiator_type.
26 27 28 |
# File 'lib/processout/invoice.rb', line 26 def merchant_initiator_type @merchant_initiator_type end |
#metadata ⇒ Object
Returns the value of attribute metadata.
32 33 34 |
# File 'lib/processout/invoice.rb', line 32 def end |
#name ⇒ Object
Returns the value of attribute name.
23 24 25 |
# File 'lib/processout/invoice.rb', line 23 def name @name end |
#project ⇒ Object
Returns the value of attribute project.
11 12 13 |
# File 'lib/processout/invoice.rb', line 11 def project @project end |
#project_id ⇒ Object
Returns the value of attribute project_id.
12 13 14 |
# File 'lib/processout/invoice.rb', line 12 def project_id @project_id end |
#return_url ⇒ Object
Returns the value of attribute return_url.
33 34 35 |
# File 'lib/processout/invoice.rb', line 33 def return_url @return_url end |
#risk ⇒ Object
Returns the value of attribute risk.
38 39 40 |
# File 'lib/processout/invoice.rb', line 38 def risk @risk end |
#sandbox ⇒ Object
Returns the value of attribute sandbox.
36 37 38 |
# File 'lib/processout/invoice.rb', line 36 def sandbox @sandbox end |
#shipping ⇒ Object
Returns the value of attribute shipping.
39 40 41 |
# File 'lib/processout/invoice.rb', line 39 def shipping @shipping end |
#statement_descriptor ⇒ Object
Returns the value of attribute statement_descriptor.
27 28 29 |
# File 'lib/processout/invoice.rb', line 27 def statement_descriptor @statement_descriptor end |
#statement_descriptor_city ⇒ Object
Returns the value of attribute statement_descriptor_city.
29 30 31 |
# File 'lib/processout/invoice.rb', line 29 def statement_descriptor_city @statement_descriptor_city end |
#statement_descriptor_company ⇒ Object
Returns the value of attribute statement_descriptor_company.
30 31 32 |
# File 'lib/processout/invoice.rb', line 30 def statement_descriptor_company @statement_descriptor_company end |
#statement_descriptor_phone ⇒ Object
Returns the value of attribute statement_descriptor_phone.
28 29 30 |
# File 'lib/processout/invoice.rb', line 28 def statement_descriptor_phone @statement_descriptor_phone end |
#statement_descriptor_url ⇒ Object
Returns the value of attribute statement_descriptor_url.
31 32 33 |
# File 'lib/processout/invoice.rb', line 31 def statement_descriptor_url @statement_descriptor_url end |
#subscription ⇒ Object
Returns the value of attribute subscription.
17 18 19 |
# File 'lib/processout/invoice.rb', line 17 def subscription @subscription end |
#subscription_id ⇒ Object
Returns the value of attribute subscription_id.
18 19 20 |
# File 'lib/processout/invoice.rb', line 18 def subscription_id @subscription_id end |
#token ⇒ Object
Returns the value of attribute token.
19 20 21 |
# File 'lib/processout/invoice.rb', line 19 def token @token end |
#token_id ⇒ Object
Returns the value of attribute token_id.
20 21 22 |
# File 'lib/processout/invoice.rb', line 20 def token_id @token_id end |
#transaction ⇒ Object
Returns the value of attribute transaction.
13 14 15 |
# File 'lib/processout/invoice.rb', line 13 def transaction @transaction end |
#transaction_id ⇒ Object
Returns the value of attribute transaction_id.
14 15 16 |
# File 'lib/processout/invoice.rb', line 14 def transaction_id @transaction_id end |
#url ⇒ Object
Returns the value of attribute url.
22 23 24 |
# File 'lib/processout/invoice.rb', line 22 def url @url end |
#webhook_url ⇒ Object
Returns the value of attribute webhook_url.
35 36 37 |
# File 'lib/processout/invoice.rb', line 35 def webhook_url @webhook_url end |
Instance Method Details
#all(options = {}) ⇒ Object
Get all the invoices. Params:
options-
Hashof options
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 |
# File 'lib/processout/invoice.rb', line 659 def all( = {}) self.prefill() request = Request.new(@client) path = "/invoices" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new a = Array.new body = response.body for v in body['invoices'] tmp = Invoice.new(@client) tmp.fill_with_data(v) a.push(tmp) end return_values.push(a) return_values[0] end |
#assign_customer(customer_id, options = {}) ⇒ Object
Assign a customer to the invoice. Params:
customer_id-
ID of the customer to be linked to the invoice
options-
Hashof options
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 |
# File 'lib/processout/invoice.rb', line 561 def assign_customer(customer_id, = {}) self.prefill() request = Request.new(@client) path = "/invoices/" + CGI.escape(@id) + "/customers" data = { "customer_id" => customer_id } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["customer"] customer = Customer.new(@client) return_values.push(customer.fill_with_data(body)) return_values[0] end |
#authorize(source, options = {}) ⇒ Object
Authorize the invoice using the given source (customer or token) Params:
source-
Source used to authorization the payment. Can be a card, a token or a gateway request
options-
Hashof options
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 |
# File 'lib/processout/invoice.rb', line 476 def (source, = {}) self.prefill() request = Request.new(@client) path = "/invoices/" + CGI.escape(@id) + "/authorize" data = { "synchronous" => .fetch(:synchronous, nil), "retry_drop_liability_shift" => .fetch(:retry_drop_liability_shift, nil), "capture_amount" => .fetch(:capture_amount, nil), "enable_three_d_s_2" => .fetch(:enable_three_d_s_2, nil), "auto_capture_at" => .fetch(:auto_capture_at, nil), "source" => source } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["transaction"] transaction = Transaction.new(@client) return_values.push(transaction.fill_with_data(body)) return_values[0] end |
#capture(source, options = {}) ⇒ Object
Capture the invoice using the given source (customer or token) Params:
source-
Source used to authorization the payment. Can be a card, a token or a gateway request
options-
Hashof options
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 |
# File 'lib/processout/invoice.rb', line 506 def capture(source, = {}) self.prefill() request = Request.new(@client) path = "/invoices/" + CGI.escape(@id) + "/capture" data = { "authorize_only" => .fetch(:authorize_only, nil), "synchronous" => .fetch(:synchronous, nil), "retry_drop_liability_shift" => .fetch(:retry_drop_liability_shift, nil), "capture_amount" => .fetch(:capture_amount, nil), "auto_capture_at" => .fetch(:auto_capture_at, nil), "enable_three_d_s_2" => .fetch(:enable_three_d_s_2, nil), "source" => source } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["transaction"] transaction = Transaction.new(@client) return_values.push(transaction.fill_with_data(body)) return_values[0] end |
#create(options = {}) ⇒ Object
Create a new invoice. Params:
options-
Hashof options
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 |
# File 'lib/processout/invoice.rb', line 689 def create( = {}) self.prefill() request = Request.new(@client) path = "/invoices" data = { "customer_id" => @customer_id, "name" => @name, "amount" => @amount, "currency" => @currency, "metadata" => , "details" => @details, "merchant_initiator_type" => @merchant_initiator_type, "statement_descriptor" => @statement_descriptor, "statement_descriptor_phone" => @statement_descriptor_phone, "statement_descriptor_city" => @statement_descriptor_city, "statement_descriptor_company" => @statement_descriptor_company, "statement_descriptor_url" => @statement_descriptor_url, "return_url" => @return_url, "cancel_url" => @cancel_url, "webhook_url" => @webhook_url, "risk" => @risk, "shipping" => @shipping, "device" => @device } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["invoice"] return_values.push(self.fill_with_data(body)) return_values[0] end |
#fetch_customer(options = {}) ⇒ Object
Get the customer linked to the invoice. Params:
options-
Hashof options
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 |
# File 'lib/processout/invoice.rb', line 536 def fetch_customer( = {}) self.prefill() request = Request.new(@client) path = "/invoices/" + CGI.escape(@id) + "/customers" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new body = response.body body = body["customer"] customer = Customer.new(@client) return_values.push(customer.fill_with_data(body)) return_values[0] end |
#fetch_transaction(options = {}) ⇒ Object
Get the transaction of the invoice. Params:
options-
Hashof options
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 |
# File 'lib/processout/invoice.rb', line 611 def fetch_transaction( = {}) self.prefill() request = Request.new(@client) path = "/invoices/" + CGI.escape(@id) + "/transactions" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new body = response.body body = body["transaction"] transaction = Transaction.new(@client) return_values.push(transaction.fill_with_data(body)) 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
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 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 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
# File 'lib/processout/invoice.rb', line 329 def fill_with_data(data) if data.nil? return self end if data.include? "id" self.id = data["id"] end if data.include? "project" self.project = data["project"] end if data.include? "project_id" self.project_id = data["project_id"] end if data.include? "transaction" self.transaction = data["transaction"] end if data.include? "transaction_id" self.transaction_id = data["transaction_id"] end if data.include? "customer" self.customer = data["customer"] end if data.include? "customer_id" self.customer_id = data["customer_id"] end if data.include? "subscription" self.subscription = data["subscription"] end if data.include? "subscription_id" self.subscription_id = data["subscription_id"] end if data.include? "token" self.token = data["token"] end if data.include? "token_id" self.token_id = data["token_id"] end if data.include? "details" self.details = data["details"] end if data.include? "url" self.url = data["url"] end if data.include? "name" self.name = data["name"] end if data.include? "amount" self.amount = data["amount"] end if data.include? "currency" self.currency = data["currency"] end if data.include? "merchant_initiator_type" self.merchant_initiator_type = data["merchant_initiator_type"] end if data.include? "statement_descriptor" self.statement_descriptor = data["statement_descriptor"] end if data.include? "statement_descriptor_phone" self.statement_descriptor_phone = data["statement_descriptor_phone"] end if data.include? "statement_descriptor_city" self.statement_descriptor_city = data["statement_descriptor_city"] end if data.include? "statement_descriptor_company" self.statement_descriptor_company = data["statement_descriptor_company"] end if data.include? "statement_descriptor_url" self.statement_descriptor_url = data["statement_descriptor_url"] end if data.include? "metadata" self. = data["metadata"] end if data.include? "return_url" self.return_url = data["return_url"] end if data.include? "cancel_url" self.cancel_url = data["cancel_url"] end if data.include? "webhook_url" self.webhook_url = data["webhook_url"] end if data.include? "sandbox" self.sandbox = data["sandbox"] end if data.include? "created_at" self.created_at = data["created_at"] end if data.include? "risk" self.risk = data["risk"] end if data.include? "shipping" self.shipping = data["shipping"] end if data.include? "device" self.device = data["device"] end self end |
#find(invoice_id, options = {}) ⇒ Object
Find an invoice by its ID. Params:
invoice_id-
ID of the invoice
options-
Hashof options
733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 |
# File 'lib/processout/invoice.rb', line 733 def find(invoice_id, = {}) self.prefill() request = Request.new(@client) path = "/invoices/" + CGI.escape(invoice_id) + "" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new body = response.body body = body["invoice"] obj = Invoice.new(@client) return_values.push(obj.fill_with_data(body)) return_values[0] end |
#initiate_three_d_s(source, options = {}) ⇒ Object
Initiate a 3-D Secure authentication Params:
source-
Source used to initiate the 3-D Secure authentication. Can be a card, or a token representing a card
options-
Hashof options
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 |
# File 'lib/processout/invoice.rb', line 586 def initiate_three_d_s(source, = {}) self.prefill() request = Request.new(@client) path = "/invoices/" + CGI.escape(@id) + "/three-d-s" data = { "enable_three_d_s_2" => .fetch(:enable_three_d_s_2, nil), "source" => source } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["customer_action"] customer_action = CustomerAction.new(@client) return_values.push(customer_action.fill_with_data(body)) return_values[0] end |
#new(data = {}) ⇒ Object
Create a new Invoice using the current client
322 323 324 |
# File 'lib/processout/invoice.rb', line 322 def new(data = {}) Invoice.new(@client, data) end |
#prefill(data) ⇒ Object
Prefills the object with the data passed as parameters Params:
data-
Hashof data
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 |
# File 'lib/processout/invoice.rb', line 433 def prefill(data) if data.nil? return self end self.id = data.fetch(:id, self.id) self.project = data.fetch(:project, self.project) self.project_id = data.fetch(:project_id, self.project_id) self.transaction = data.fetch(:transaction, self.transaction) self.transaction_id = data.fetch(:transaction_id, self.transaction_id) self.customer = data.fetch(:customer, self.customer) self.customer_id = data.fetch(:customer_id, self.customer_id) self.subscription = data.fetch(:subscription, self.subscription) self.subscription_id = data.fetch(:subscription_id, self.subscription_id) self.token = data.fetch(:token, self.token) self.token_id = data.fetch(:token_id, self.token_id) self.details = data.fetch(:details, self.details) self.url = data.fetch(:url, self.url) self.name = data.fetch(:name, self.name) self.amount = data.fetch(:amount, self.amount) self.currency = data.fetch(:currency, self.currency) self.merchant_initiator_type = data.fetch(:merchant_initiator_type, self.merchant_initiator_type) self.statement_descriptor = data.fetch(:statement_descriptor, self.statement_descriptor) self.statement_descriptor_phone = data.fetch(:statement_descriptor_phone, self.statement_descriptor_phone) self.statement_descriptor_city = data.fetch(:statement_descriptor_city, self.statement_descriptor_city) self.statement_descriptor_company = data.fetch(:statement_descriptor_company, self.statement_descriptor_company) self.statement_descriptor_url = data.fetch(:statement_descriptor_url, self.statement_descriptor_url) self. = data.fetch(:metadata, self.) self.return_url = data.fetch(:return_url, self.return_url) self.cancel_url = data.fetch(:cancel_url, self.cancel_url) self.webhook_url = data.fetch(:webhook_url, self.webhook_url) self.sandbox = data.fetch(:sandbox, self.sandbox) self.created_at = data.fetch(:created_at, self.created_at) self.risk = data.fetch(:risk, self.risk) self.shipping = data.fetch(:shipping, self.shipping) self.device = data.fetch(:device, self.device) self end |
#void(options = {}) ⇒ Object
Void the invoice Params:
options-
Hashof options
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 |
# File 'lib/processout/invoice.rb', line 635 def void( = {}) self.prefill() request = Request.new(@client) path = "/invoices/" + CGI.escape(@id) + "/void" data = { } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["transaction"] transaction = Transaction.new(@client) return_values.push(transaction.fill_with_data(body)) return_values[0] end |