Skip to content

Commit

Permalink
#v1.0.1911.0-rc - Invoice model updated (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Buedo authored Nov 1, 2019
1 parent 09a02f6 commit 661f4d9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/BitPaySDKLight/Model/Invoice/InvoiceStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

interface InvoiceStatus
{
const New = "new";
const Funded = "funded";
const Processing = "processing";
const Complete = "complete";
const Failed = "failed";
const Cancelled = "cancelled";
const New = "new";
const Paid = "paid";
const Confirmed = "confirmed";
const Complete = "complete";
const Expired = "expired";
const Invalid = "invalid";
}

0 comments on commit 661f4d9

Please sign in to comment.