Uses of Class
model.Invoice

Packages that use Invoice
controller   
model   
 

Uses of Invoice in controller
 

Methods in controller that return Invoice
 Invoice BitPay.createInvoice(Invoice invoice)
          Create a BitPay invoice using the POS facade.
 Invoice BitPay.createInvoice(Invoice invoice, java.lang.String token)
          Create a BitPay invoice.
 Invoice BitPay.getInvoice(java.lang.String invoiceId)
          Retrieve a BitPay invoice by invoice id using the public facade.
 Invoice BitPay.getInvoice(java.lang.String invoiceId, java.lang.String token)
          Retrieve a BitPay invoice by invoice id using the specified facade.
 

Methods in controller that return types with arguments of type Invoice
 java.util.List<Invoice> BitPay.getInvoices(java.lang.String dateStart, java.lang.String dateEnd)
          Retrieve a collection of BitPay invoices.
 

Methods in controller with parameters of type Invoice
 boolean BitPay.cancelRefundRequest(Invoice invoice, java.lang.String refundId)
          Cancel a previously submitted refund request on a BitPay invoice.
 Invoice BitPay.createInvoice(Invoice invoice)
          Create a BitPay invoice using the POS facade.
 Invoice BitPay.createInvoice(Invoice invoice, java.lang.String token)
          Create a BitPay invoice.
 java.util.List<Refund> BitPay.getAllRefunds(Invoice invoice)
          Retrieve all refund requests on a BitPay invoice.
 Refund BitPay.getRefund(Invoice invoice, java.lang.String refundId)
          Retrieve a previously made refund request on a BitPay invoice.
 RefundHelper BitPay.requestRefund(Invoice invoice, java.lang.String bitcoinAddress, java.lang.Double amount, java.lang.String currency)
          Request a refund for a BitPay invoice.
 

Uses of Invoice in model
 

Methods in model that return Invoice
 Invoice RefundHelper.getInvoice()
          Retrieve the invoice.
 

Constructors in model with parameters of type Invoice
RefundHelper(Refund refund, Invoice invoice)