GetInvoiceValueRequest.go 388 B

12345678910111213141516171819
  1. package http_model
  2. type GetInvoiceValueRequest struct {
  3. Status int `json:"status"`
  4. }
  5. type InvoiceValue struct {
  6. InvoiceValue float64 `json:"invoice_value"`
  7. }
  8. func NewGetInvoiceValueRequest() *GetInvoiceValueRequest {
  9. return new(GetInvoiceValueRequest)
  10. }
  11. func NewGetInvoiceValueResponse() *CommonResponse {
  12. resp := new(CommonResponse)
  13. resp.Data = new(InvoiceValue)
  14. return resp
  15. }