Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions push/model/message_hm.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ type AndroidNotification struct {
VibrateConfig []string `json:"vibrate_config,omitempty"`
Visibility string `json:"visibility,omitempty"`
LightSettings *LightSettings `json:"light_settings,omitempty"`
ForegroundShow bool `json:"foreground_show,omitempty"`
ForegroundShow bool `json:"foreground_show"`
}

type ClickAction struct {
Type int `json:"type"` //when the type equals to 1, At least one of intent and action is not empty
Type int `json:"type"` // when the type equals to 1, At least one of intent and action is not empty
Intent string `json:"intent,omitempty"`
Action string `json:"action,omitempty"`
Url string `json:"url,omitempty"`
Expand Down