- package http_model
- type ConfirmInvoiceRequest struct {
- BillingId string `json:"billing_id"`
- Url string `json:"url"`
- }
- func NewConfirmInvoiceRequest() *ConfirmInvoiceRequest {
- return new(ConfirmInvoiceRequest)
- }
- func NewConfirmInvoiceResponse() *CommonResponse {
- return new(CommonResponse)
- }
|