/// <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; }
/// <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; }