You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TExpireType 失效类型 (指定时间戳/指定间隔)
type TExpireType int
// TEnvVersion 要打开的小程序版本。正式版为"release",体验版为"trial",开发版为"develop",仅在微信外打开时生效
type TEnvVersion string
// TExpireType 失效类型 (指定时间戳/指定间隔)
type TExpireType int
// TEnvVersion 要打开的小程序版本。正式版为"release",体验版为"trial",开发版为"develop",仅在微信外打开时生效
type TEnvVersion string
const (
// ExpireTypeTime 指定时间戳后失效
ExpireTypeTime TExpireType = 0
)
// ULParams 请求参数
// https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/url-link/urllink.generate.html#请求参数
type ULParams struct {
Path string
json:"path"
Query string
json:"query"
EnvVersion TEnvVersion
json:"env_version"
IsExpire bool
json:"is_expire"
ExpireType TExpireType
json:"expire_type"
ExpireTime int64
json:"expire_time"
ExpireInterval int
json:"expire_interval"
}
The text was updated successfully, but these errors were encountered: