Skip to content

Commit

Permalink
add push notification channel to meeting data
Browse files Browse the repository at this point in the history
  • Loading branch information
konrad2002 committed Nov 7, 2024
1 parent d9e57df commit ce549d3
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions model/meeting_data.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
package model

type MeetingData struct {
LivetimingUrl string `json:"livetiming_url,omitempty" bson:"livetiming_url,omitempty"`
WebsiteUrl string `json:"website_url,omitempty" bson:"website_url,omitempty"`
StreamUrl string `json:"stream_url,omitempty" bson:"stream_url,omitempty"`
StreamEmbedUrl string `json:"stream_embed_url,omitempty" bson:"stream_embed_url,omitempty"`
InstagramUrl string `json:"instagram_url,omitempty" bson:"instagram_url,omitempty"`
FacebookUrl string `json:"facebook_url,omitempty" bson:"facebook_url,omitempty"`
HasLivetiming bool `json:"has_livetiming,omitempty" bson:"has_livetiming,omitempty"`
HasFtpStartList bool `json:"has_ftp_start_list,omitempty" bson:"has_ftp_start_list,omitempty"`
HasFtpResultList bool `json:"has_ftp_result_list,omitempty" bson:"has_ftp_result_list,omitempty"`
FtpStartListMask string `json:"ftp_start_list_mask,omitempty" bson:"ftp_start_list_mask,omitempty"`
FtpResultListMask string `json:"ftp_result_list_mask,omitempty" bson:"ftp_result_list_mask,omitempty"`
Sponsors []Sponsor `json:"sponsors,omitempty" bson:"sponsors,omitempty"`
PushNotificationChannel string `json:"push_notification_channel,omitempty" bson:"push_notification_channel,omitempty"`

LivetimingUrl string `json:"livetiming_url,omitempty" bson:"livetiming_url,omitempty"`
WebsiteUrl string `json:"website_url,omitempty" bson:"website_url,omitempty"`
StreamUrl string `json:"stream_url,omitempty" bson:"stream_url,omitempty"`
StreamEmbedUrl string `json:"stream_embed_url,omitempty" bson:"stream_embed_url,omitempty"`
InstagramUrl string `json:"instagram_url,omitempty" bson:"instagram_url,omitempty"`
FacebookUrl string `json:"facebook_url,omitempty" bson:"facebook_url,omitempty"`
HasLivetiming bool `json:"has_livetiming,omitempty" bson:"has_livetiming,omitempty"`
HasFtpStartList bool `json:"has_ftp_start_list,omitempty" bson:"has_ftp_start_list,omitempty"`
HasFtpResultList bool `json:"has_ftp_result_list,omitempty" bson:"has_ftp_result_list,omitempty"`
FtpStartListMask string `json:"ftp_start_list_mask,omitempty" bson:"ftp_start_list_mask,omitempty"`
FtpResultListMask string `json:"ftp_result_list_mask,omitempty" bson:"ftp_result_list_mask,omitempty"`
Sponsors []Sponsor `json:"sponsors,omitempty" bson:"sponsors,omitempty"`
PushNotificationChannel string `json:"push_notification_channel,omitempty" bson:"push_notification_channel,omitempty"`
}

0 comments on commit ce549d3

Please sign in to comment.