14 lines
309 B
Go
14 lines
309 B
Go
package responses
|
|
|
|
type CreateInvoiceConfigResponse struct {
|
|
ID int64 `json:"id"`
|
|
}
|
|
|
|
type UpdateInvoiceConfigResponse struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
Description string `json:"description"`
|
|
IsActive bool `json:"isActive"`
|
|
}
|