We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
see file of proto/ledgers/debt_service.proto
The text was updated successfully, but these errors were encountered:
message Debt { string id = 1; string company_id = 2; string purchase_id = 3; string purchase_code = 4; string supplier_id = 5; string supplier_name = 6; string due_date = 7; double amount_owed = 8; double amount_paid = 9; string payment_status = 10; bytes payments = 11; } message Debts { repeated Debt debt = 1; }
message ViewBySupplierIdInput { string id = 1; string period = 2; } service DebtService { rpc Create(Debt) returns (Debt) {} rpc ViewBySupplierId(ViewBySupplierIdInput) returns (Debts) {} rpc ViewByPurchaseId(Id) returns (Debt) {} }
Sorry, something went wrong.
jacky-htg
No branches or pull requests
see file of proto/ledgers/debt_service.proto
The text was updated successfully, but these errors were encountered: