You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package response
|
|
|
|
type MemberInfoGetResponse struct {
|
|
BaseResponse
|
|
|
|
Id int32 `json:"id"`
|
|
Name string `json:"name"`
|
|
MemberInfo MemberInfo `json:"member_info"`
|
|
}
|
|
|
|
type MemberInfo struct {
|
|
IsVip int32 `json:"is_vip"`
|
|
VipEndtime string `json:"vip_endtime"`
|
|
}
|
|
|