refreshauthorizationrequest.go 454 B

123456789101112131415161718
  1. package http_model
  2. type RefreshAuthorizationRequest struct {
  3. PhoneNumber string `json:"phone_number"` //绑定手机号
  4. }
  5. type RefreshAuthkuaishouResponse struct {
  6. Url string `json:"url"`
  7. }
  8. func NewRefreshAuthorizationRequest() *RefreshAuthorizationRequest {
  9. return new(RefreshAuthorizationRequest)
  10. }
  11. func NewRefreshAuthorizationResponse() *CommonResponse {
  12. resp := new(CommonResponse)
  13. resp.Data = new(RefreshAuthkuaishouResponse)
  14. return resp
  15. }