Skip to content

Commit 92a66e6

Browse files
authored
Removing hard coded password
1 parent 861ef1f commit 92a66e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Model/Riskv1authenticationsAcquirerInformation.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public partial class Riskv1authenticationsAcquirerInformation : IEquatable<Risk
3535
/// </summary>
3636
/// <param name="AcquirerBin">Acquirer bank ID number that corresponds to a certificate that Cybersource already has.This ID has this format. 4XXXXX for Visa and 5XXXXX for Mastercard. .</param>
3737
/// <param name="Country">Issuers need to be aware of the Acquirer&#39;s Country Code when the Acquirer country differs from the Merchant country and the Acquirer is in the EEA (European Economic Area). .</param>
38-
/// <param name="Password">Registered password for the Visa directory server. For Mastercard, this value is always 12345678. .</param>
38+
/// <param name="Password">Registered password for the Visa directory server.</param>
3939
/// <param name="MerchantId">Username for the visa directory server that is created when your acquirer sets up your account. This ID might be the same as your merchant ID. the username can be 15 or 23 characters. .</param>
4040
public Riskv1authenticationsAcquirerInformation(string AcquirerBin = default(string), string Country = default(string), string Password = default(string), string MerchantId = default(string))
4141
{
@@ -60,9 +60,9 @@ public partial class Riskv1authenticationsAcquirerInformation : IEquatable<Risk
6060
public string Country { get; set; }
6161

6262
/// <summary>
63-
/// Registered password for the Visa directory server. For Mastercard, this value is always 12345678.
63+
/// Registered password for the Visa directory server.
6464
/// </summary>
65-
/// <value>Registered password for the Visa directory server. For Mastercard, this value is always 12345678. </value>
65+
/// <value>Registered password for the Visa directory server. </value>
6666
[DataMember(Name="password", EmitDefaultValue=false)]
6767
public string Password { get; set; }
6868

0 commit comments

Comments
 (0)