bilibili-backup/app/service/main/vip/model/associate_bind.go
2019-04-22 02:59:20 +00:00

28 lines
512 B
Go

package model
// BindInfo struct.
type BindInfo struct {
Account *BindAccount `json:"account"`
Outer *BindOuter `json:"outer"`
}
// BindAccount bind account.
type BindAccount struct {
Mid int64 `json:"mid"`
Name string `json:"name"`
Face string `json:"face"`
}
// BindOuter outer bind info.
type BindOuter struct {
Tel string `json:"tel"`
BindState int32 `json:"bind_state"`
}
// ArgOpenBindByMid args.
type ArgOpenBindByMid struct {
Mid int64
AppID int64
OutOpenID string
}