script_other_not_upload.go 303 B

1234567891011121314
  1. package http_model
  2. type ScriptOtherNotUploadRequest struct {
  3. Rate int `json:"rate"`
  4. }
  5. func NewScriptOtherNotUploadRequest() *ScriptOtherNotUploadRequest {
  6. return new(ScriptOtherNotUploadRequest)
  7. }
  8. func NewScriptOtherNotUploadResponse() *CommonResponse {
  9. resp := new(CommonResponse)
  10. return resp
  11. }