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.
10 lines
320 B
10 lines
320 B
package jpush |
|
|
|
// Option . |
|
type Option struct { |
|
SendNo int `json:"sendno,omitempty"` |
|
TimeLive int `json:"time_to_live,omitempty"` |
|
ApnsProduction bool `json:"apns_production"` |
|
OverrideMsgID int64 `json:"override_msg_id,omitempty"` |
|
BigPushDuration int `json:"big_push_duration,omitempty"` |
|
}
|
|
|