Skip to content

Commit

Permalink
Merge pull request #21 from SwimResults/develop
Browse files Browse the repository at this point in the history
add push notification channel to meeting data
  • Loading branch information
konrad2002 authored Nov 7, 2024
2 parents a8d5266 + ce549d3 commit 53fdb4f
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions model/meeting_data.go
Original file line number Diff line number Diff line change
@@ -1,16 +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"`
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 53fdb4f

Please sign in to comment.