Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Secure3D21AuthenticationUpdateRequestAllOf" /> class.
 /// </summary>
 /// <param name="methodNotificationStatus">Indicates how the merchant received the 3DS method..</param>
 /// <param name="acsResponse">acsResponse.</param>
 public Secure3D21AuthenticationUpdateRequestAllOf(MethodNotificationStatusEnum?methodNotificationStatus = default(MethodNotificationStatusEnum?), ACSResponse acsResponse = default(ACSResponse))
 {
     this.MethodNotificationStatus = methodNotificationStatus;
     this.AcsResponse = acsResponse;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Secure3D21AuthenticationUpdateRequest" /> class.
 /// </summary>
 /// <param name="methodNotificationStatus">Indicates how the merchant received the 3DS method..</param>
 /// <param name="acsResponse">acsResponse.</param>
 /// <param name="storeId">An optional Outlet ID for clients that support multiple stores in the same developer app..</param>
 /// <param name="authenticationType">Object name of the authentication update request. (required).</param>
 /// <param name="billingAddress">billingAddress.</param>
 public Secure3D21AuthenticationUpdateRequest(MethodNotificationStatusEnum?methodNotificationStatus = null, ACSResponse acsResponse = default(ACSResponse), string storeId = default(string), string authenticationType = default(string), Address billingAddress = default(Address)) : base(storeId, authenticationType, billingAddress)
 {
     this.MethodNotificationStatus = methodNotificationStatus;
     this.AcsResponse = acsResponse;
 }