shut_down_sub_account.go 392 B

123456789101112131415161718
  1. package http_model
  2. type ShutDownSubAccountRequest struct {
  3. SubAccountId int `json:"sub_account_id"`
  4. }
  5. type ShutDownSubAccountInfo struct {
  6. }
  7. func NewShutDownSubAccountRequest() *ShutDownSubAccountRequest {
  8. return new(ShutDownSubAccountRequest)
  9. }
  10. func NewShutDownSubAccountResponse() *CommonResponse {
  11. resp := new(CommonResponse)
  12. resp.Data = new(ShutDownSubAccountInfo)
  13. return resp
  14. }