package http_model type StopSubAccountRequest struct { SubAccountId int `json:"sub_account_id"` } type StopSubAccountResponse struct { SubAccountID int `json:"sub_account_id"` SubAccountName string `json:"sub_account_name"` } func NewStopSubAccountRequest() *StopSubAccountRequest { return new(StopSubAccountRequest) } func NewStopSubAccountResponse() *CommonResponse { return new(CommonResponse) }