authorize.go
577 Bytes
package model
type Authorize struct {
ResponseType string `json:"response_type"`
ClientId string `json:"client_id"`
RedirectUri string `json:"redirect_uri"`
State string `json:"state"`
Scope string `json:"scope"`
UserMobile string `json:"user_mobile"`
UserName string `json:"user_name"`
Callback string `json:"callback"`
Certification string `json:"certification"`
Ptcode string `json:"ptcode"`
PathType string `json:"path_type"`
Path string `json:"path"`
}
type Receipt struct {
Id string `json:"id"`
}