mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-27 20:30:40 +08:00
15 lines
252 B
Go
15 lines
252 B
Go
package requestParams
|
|
|
|
type PushForward struct {
|
|
NextType int `json:"nextType"`
|
|
Scheme string `json:"scheme,omitempty"`
|
|
}
|
|
|
|
func (m *PushForward) SetNextType(c int) {
|
|
m.NextType = c
|
|
}
|
|
|
|
func (m *PushForward) SetScheme(t string) {
|
|
m.Scheme = t
|
|
}
|