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

15 lines
252 B
Go
Raw Normal View History

2022-09-23 17:40:48 +08:00
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
}