Last active
January 31, 2024 21:11
-
-
Save tcha-tcho/8e10f772bd7e2786740a63c5af5d51c5 to your computer and use it in GitHub Desktop.
Invoice_data.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [bucket]/<userID>/invoices/invoiceID.json | |
{ | |
"invoiceID": "Number" | |
,"by": "UID" | |
,"createdAt": "Date" | |
,"legacyLogin": "String" | |
,"chargeType": "String[event|recurrent|occasional]" | |
,"userToCharge": { | |
"name": "String" | |
,"CPFCNPJ": "String" | |
,"userID": "String" | |
} | |
,"paymentGateway": { | |
"name": "String" | |
,"callback": "String" | |
,"accountID": "String" | |
,"billingType": "String" | |
,"maxInstallmentCount": "String" | |
} | |
,"currentStatus": "String" | |
,"statusHistory": [ | |
{} | |
] | |
,"notification": "String" | |
,"notificationHistory": [ | |
{} | |
] | |
,"tax": "Number" | |
,"taxesDetails": [ | |
{} | |
] | |
,"value": "Number" | |
,"name": "String" | |
,"description": "String" | |
,"dueDate": "Date" | |
,"dueDateLimitDays": "Date" | |
,"amountsDetails": [ | |
[ | |
"imei" | |
,"name" | |
,[ [ "plano", "endtimestamp" ] ] | |
] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment