| 12345678910111213141516171819 |
- package others_request
- import (
- "private-go-sdk/http"
- )
- type MobilesealLoginAppResultRequest struct {
- // 【本次登录任务id】本次登录任务id
- LoginSid string `json:"loginSid,omitempty"`
- }
- func (obj MobilesealLoginAppResultRequest) GetUrl() string {
- return "/mobileseal/login/app/result"
- }
- func (obj MobilesealLoginAppResultRequest) GetHttpParameter() *http.HttpParameter {
- parameter := http.NewGetHttpParameter()
- parameter.AddParam("loginSid", obj.LoginSid)
- return parameter
- }
|