Files
open-im-server/internal/push/mobpush/requestparams/pushForward.go
T

15 lines
252 B
Go
Raw Normal View History

2023-02-09 20:36:34 +08:00
package requestparams
2022-09-23 17:40:48 +08:00
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
}