| 123456789101112131415161718192021 |
- package others_request
- import (
- "private-go-sdk/http"
- "encoding/json"
- )
- type MobilesealSignFinishSignRequest struct {
- // 【本次签署任务id】本次签署任务id
- SignSid string `json:"signSid"`
- }
- func (obj MobilesealSignFinishSignRequest) GetUrl() string {
- return "/mobileseal/sign/finish/sign"
- }
- func (obj MobilesealSignFinishSignRequest) GetHttpParameter() *http.HttpParameter {
- parameter := http.NewPostHttpParameter()
- jsonBytes, _ := json.Marshal(obj)
- parameter.SetJsonParamer(string(jsonBytes))
- return parameter
- }
|