update_subaccount_info.go 496 B

123456789101112131415161718
  1. package http_model
  2. type UpdateSubaccountInfoRequest struct {
  3. SubAccountName string `json:"sub_account_name"`
  4. Job int `json:"job_id"`
  5. PhoneNumber string `json:"phone_number"`
  6. Code string `json:"code"`
  7. SubAccountID int `json:"sub_account_id"`
  8. }
  9. func NewUpdateSubAccountInfoRequest() *UpdateSubaccountInfoRequest {
  10. return new(UpdateSubaccountInfoRequest)
  11. }
  12. func NewUpdateSubAccountInfoResponse() *CommonResponse {
  13. resp := new(CommonResponse)
  14. return resp
  15. }