third-platform-sdk/sdk/dunion-go-sdk/model/link.go
2024-05-13 23:18:54 +08:00

18 lines
405 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package model
//swagger:model
type LinkResponse struct {
Response
Data struct {
//生成的链接
//example: https://v.didi.cn/p/abcd
Link string `json:"link"`
//实例ID可通过此ID去生成海报或者二维码
DSI string `json:"dsi"`
//小程序appid
AppId string `json:"app_id,omitempty"`
//小程序原始ID
AppSource string `json:"app_source,omitempty"`
} `json:"data"`
}