mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-04-28 14:29:19 +08:00
e000dc18aa
Co-authored-by: liuming <liuming@example.com>
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
|
|
}
|