LinkOtherTimeOutRequest.go 282 B

12345678910111213
  1. package http_model
  2. type LinkOtherTimeOutRequest struct {
  3. Rate int `json:"rate"`
  4. }
  5. func NewLinkOtherTimeOutRequest() *LinkOtherTimeOutRequest {
  6. return new(LinkOtherTimeOutRequest)
  7. }
  8. func NewLinkOtherTimeOutResponse() *CommonResponse {
  9. return new(CommonResponse)
  10. }