123456789101112131415161718 |
- package http_model
- type ShutDownSubAccountRequest struct {
- SubAccountId int `json:"sub_account_id"`
- }
- type ShutDownSubAccountInfo struct {
- }
- func NewShutDownSubAccountRequest() *ShutDownSubAccountRequest {
- return new(ShutDownSubAccountRequest)
- }
- func NewShutDownSubAccountResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(ShutDownSubAccountInfo)
- return resp
- }
|