stop_subaccount.go 411 B

123456789101112131415
  1. package http_model
  2. type StopSubAccountRequest struct {
  3. SubAccountId int `json:"sub_account_id"`
  4. }
  5. type StopSubAccountResponse struct {
  6. SubAccountID int `json:"sub_account_id"`
  7. SubAccountName string `json:"sub_account_name"`
  8. }
  9. func NewStopSubAccountRequest() *StopSubAccountRequest { return new(StopSubAccountRequest) }
  10. func NewStopSubAccountResponse() *CommonResponse {
  11. return new(CommonResponse)
  12. }