Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FaxboxNotificationsInbound" /> class.
 /// </summary>
 /// <param name="callback">callback.</param>
 /// <param name="email">email.</param>
 /// <param name="sms">sms.</param>
 public FaxboxNotificationsInbound(FaxboxNotificationsInboundCallback callback = default(FaxboxNotificationsInboundCallback), FaxboxNotificationsInboundEmail email = default(FaxboxNotificationsInboundEmail), FaxboxNotificationsInboundSms sms = default(FaxboxNotificationsInboundSms))
 {
     this.Callback = callback;
     this.Email    = email;
     this.Sms      = sms;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FaxesNotifications" /> class.
 /// </summary>
 /// <param name="email">email.</param>
 /// <param name="sms">sms.</param>
 public FaxesNotifications(FaxboxNotificationsOutboundEmail email = default(FaxboxNotificationsOutboundEmail), FaxboxNotificationsInboundSms sms = default(FaxboxNotificationsInboundSms))
 {
     this.Email = email;
     this.Sms = sms;
 }