123456789101112131415161718 |
- package http_model
- type UpdateSubaccountInfoRequest struct {
- SubAccountName string `json:"sub_account_name"`
- Job int `json:"job_id"`
- PhoneNumber string `json:"phone_number"`
- Code string `json:"code"`
- SubAccountID int `json:"sub_account_id"`
- }
- func NewUpdateSubAccountInfoRequest() *UpdateSubaccountInfoRequest {
- return new(UpdateSubaccountInfoRequest)
- }
- func NewUpdateSubAccountInfoResponse() *CommonResponse {
- resp := new(CommonResponse)
- return resp
- }
|