Skip to content

Commit

Permalink
fix notify models
Browse files Browse the repository at this point in the history
  • Loading branch information
ainilili committed Aug 2, 2019
1 parent 1e9f203 commit e83cd2d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions sdk/api_notify_models.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ type OANoticeHead struct {
}

type OANoticeBody struct {
Title string `json:"title"`
Form []OANoticeBodyForm `json:"form"`
Rich OANoticeBodyRich `json:"rich"`
Content string `json:"content"`
Image string `json:"image"`
FileCount string `json:"file_count"`
Author string `json:"author"`
Title *string `json:"title"`
Form *[]OANoticeBodyForm `json:"form"`
Rich *OANoticeBodyRich `json:"rich"`
Content *string `json:"content"`
Image *string `json:"image"`
FileCount *string `json:"file_count"`
Author *string `json:"author"`
}

type OANoticeBodyForm struct {
Expand Down

0 comments on commit e83cd2d

Please sign in to comment.