/// <summary>
 /// Initializes a new instance of the TeamsChannelData class.
 /// </summary>
 /// <param name="eventType">Type of event.</param>
 public TeamsChannelData(ChannelInfo channel = default(ChannelInfo), string eventType = default(string), TeamInfo team = default(TeamInfo), TenantInfo tenant = default(TenantInfo))
 {
     Channel   = channel;
     EventType = eventType;
     Team      = team;
     Tenant    = tenant;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the TeamsChannelData class.
 /// </summary>
 /// <param name="channel">Information about the channel in which the
 /// message was sent</param>
 /// <param name="eventType">Type of event.</param>
 /// <param name="team">Information about the team in which the message
 /// was sent</param>
 /// <param name="notification">Notification settings for the
 /// message</param>
 /// <param name="tenant">Information about the tenant in which the
 /// message was sent</param>
 public TeamsChannelData(ChannelInfo channel = default(ChannelInfo), string eventType = default(string), TeamInfo team = default(TeamInfo), NotificationInfo notification = default(NotificationInfo), TenantInfo tenant = default(TenantInfo))
 {
     Channel      = channel;
     EventType    = eventType;
     Team         = team;
     Notification = notification;
     Tenant       = tenant;
 }