response_user.go 614 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package ups_sdk
  2. type RegisterUserResponse struct {
  3. msgResponse
  4. }
  5. type DeleteUserResponse struct {
  6. msgResponse
  7. }
  8. type IdentifyResponse struct {
  9. msgResponse
  10. UserExist bool `json:"userExist"`
  11. Pass bool `json:"pass"`
  12. }
  13. type UpdateUserUserNameResponse struct {
  14. msgResponse
  15. }
  16. type UpdateUserPasswordResponse struct {
  17. msgResponse
  18. }
  19. type MergeUserResponse struct {
  20. msgResponse
  21. }
  22. type GetUsersResponse struct {
  23. msgResponse
  24. Infos []UserInfo `json:"infos"`
  25. TotalCount int64 `json:"totalCount"`
  26. PageNo int `json:"pageNo"`
  27. }
  28. type UserInfo struct {
  29. UserName string `json:"name"`
  30. }