17 lines
459 B
Go
17 lines
459 B
Go
package responses
|
|
|
|
type CreateInvoiceResponse struct {
|
|
ID int64 `json:"id"`
|
|
InvoiceCode string `json:"invoiceCode"`
|
|
}
|
|
|
|
type UpdateInvoiceResponse struct {
|
|
ID int64 `json:"id"`
|
|
InvoiceCode string `json:"invoiceCode"`
|
|
Type string `json:"type"`
|
|
Status string `json:"status"`
|
|
InvoiceConfigID int64 `json:"invoiceConfigId"`
|
|
TotalItems int32 `json:"totalItems"`
|
|
Note string `json:"note"`
|
|
}
|