Skip to content

Commit

Permalink
Merge pull request #83 from tada-team/meetings
Browse files Browse the repository at this point in the history
update structs
  • Loading branch information
deniskelin authored Mar 28, 2022
2 parents fe0d2bf + e60cb83 commit eb816ce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions meetings.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ type MeetingsRequestParams struct {
Day int32 `json:"day,omitempty"`
TeamUuid string `json:"team_uuid,omitempty"`
Members []string `json:"members,omitempty"`
Limit int `json:"limit,omitempty"`
Offset int `json:"offset,omitempty"`
Limit int32 `json:"limit,omitempty"`
Offset int32 `json:"offset,omitempty"`
IsArchive bool `json:"is_archive,omitempty"`
IsFreq bool `json:"is_freq,omitempty"`
IsPublic bool `json:"is_public,omitempty"`
Expand All @@ -36,9 +36,9 @@ type MeetingsRequestParams struct {

type MeetingsResponse struct {
Items []Meeting `json:"items"`
Limit int `json:"limit,omitempty"`
Offset int `json:"offset,omitempty"`
Total int `json:"total,omitempty"`
Limit int32 `json:"limit,omitempty"`
Offset int32 `json:"offset,omitempty"`
Total int32 `json:"total,omitempty"`
}

type MeetingsCreateRequestMembers struct {
Expand Down

0 comments on commit eb816ce

Please sign in to comment.