Skip to content

Commit

Permalink
Merge pull request #114 from tada-team/meeting-freq-statuses
Browse files Browse the repository at this point in the history
fix update field
  • Loading branch information
melkayalenka authored Jun 2, 2022
2 parents 4c64229 + 44b17a0 commit a76e38a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions meetings.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,18 @@ type Freq struct {
}

type MeetingsUpdateRequest struct {
MeetingId string `json:"meeting_id"`
TeamUuid string `json:"team_uuid"`
StartAt *string `json:"start_at,omitempty"`
Duration *int32 `json:"duration,omitempty"`
Freq *Freq `json:"freq,omitempty"`
IsPublic *bool `json:"is_public,omitempty"`
IsOutside *bool `json:"is_outside,omitempty"`
Title *string `json:"title,omitempty"`
Description *string `json:"description,omitempty"`
AddMembers []MeetingsMemberCreateParams `json:"add_members,omitempty"`
RemoveMembers []JID `json:"remove_members,omitempty"`
NotificationEnabled *bool `json:"notification_enabled,omitempty"`
MeetingId string `json:"meeting_id"`
TeamUuid string `json:"team_uuid"`
StartAt *string `json:"start_at,omitempty"`
Duration *int32 `json:"duration,omitempty"`
Freq *Freq `json:"freq,omitempty"`
IsPublic *bool `json:"is_public,omitempty"`
IsOutside *bool `json:"is_outside,omitempty"`
Title *string `json:"title,omitempty"`
Description *string `json:"description,omitempty"`
AddMembers []MeetingsMemberCreateParams `json:"add_members,omitempty"`
RemoveMembers []JID `json:"remove_members,omitempty"`
NotificationsEnabled *bool `json:"notifications_enabled,omitempty"`
}

type MeetingsDeleteRequestParams struct {
Expand Down

0 comments on commit a76e38a

Please sign in to comment.