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.
23 lines
400 B
23 lines
400 B
package request
|
|
|
|
import "../common"
|
|
|
|
type MemberInfoGetRequest struct {
|
|
common.Model
|
|
}
|
|
|
|
func (MemberInfoGetRequest) GetMethod() string {
|
|
return "member.info.get"
|
|
}
|
|
|
|
func (MemberInfoGetRequest) GetVersion() string {
|
|
return "1.0"
|
|
}
|
|
|
|
func (MemberInfoGetRequest) GetRequestType() common.RequestType {
|
|
return common.GET
|
|
}
|
|
|
|
func (req MemberInfoGetRequest) GetModel() common.Model {
|
|
return req.Model
|
|
}
|
|
|