1234567891011121314151617181920 |
- package http_model
- type SubAccShowRequest struct {
- SubaccountId string `json:"sub_account_id"`
- }
- type GetSubAccountData struct {
- Phonenumber string `json:"phonenumber"`
- SubAccountName string `json:"sub_account_name"`
- JobId int `json:"job_id"`
- }
- func NewSubAccShowRequest() *SubAccShowRequest {
- return new(SubAccShowRequest)
- }
- func NewSubAccShowResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(GetSubAccountData)
- return resp
- }
|