Skip to content

Commit

Permalink
Merge pull request #287 from AuthorizeNet/mandate
Browse files Browse the repository at this point in the history
Changes for March 2021
  • Loading branch information
gnongsie authored Apr 1, 2021
2 parents a18d6fc + d3f7444 commit 705b310
Show file tree
Hide file tree
Showing 13 changed files with 696 additions and 355 deletions.
96 changes: 96 additions & 0 deletions Authorize.NET/Api/Contracts/V1/AnetApiSchema.generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,16 @@ public partial class customerPaymentProfileListItemType : object, System.Compone
/// <remarks/>
public paymentMaskedType payment;

/// <remarks/>
public string originalNetworkTransId;

/// <remarks/>
public decimal originalAuthAmount;

/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool originalAuthAmountSpecified;

public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

protected void RaisePropertyChanged(string propertyName) {
Expand Down Expand Up @@ -1489,6 +1499,22 @@ public partial class transactionDetailsType : object, System.ComponentModel.INot
/// <remarks/>
public nameAndAddressType shipFrom;

/// <remarks/>
public string networkTransId;

/// <remarks/>
public string originalNetworkTransId;

/// <remarks/>
public decimal originalAuthAmount;

/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool originalAuthAmountSpecified;

/// <remarks/>
public string authorizationIndicator;

public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

protected void RaisePropertyChanged(string propertyName) {
Expand Down Expand Up @@ -2272,6 +2298,9 @@ public partial class profileTransOrderType : profileTransAmountType {

/// <remarks/>
public subsequentAuthInformation subsequentAuthInformation;

/// <remarks/>
public authorizationIndicatorType authorizationIndicatorType;
}

/// <remarks/>
Expand Down Expand Up @@ -2331,6 +2360,13 @@ public partial class subsequentAuthInformation : object, System.ComponentModel.I
/// <remarks/>
public string originalNetworkTransId;

/// <remarks/>
public decimal originalAuthAmount;

/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool originalAuthAmountSpecified;

/// <remarks/>
public merchantInitTransReasonEnum reason;

Expand Down Expand Up @@ -2367,6 +2403,44 @@ public enum merchantInitTransReasonEnum {
noShow,
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public partial class authorizationIndicatorType : object, System.ComponentModel.INotifyPropertyChanged {

/// <remarks/>
public authIndicatorEnum authorizationIndicator;

/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool authorizationIndicatorSpecified;

public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
public enum authIndicatorEnum {

/// <remarks/>
pre,

/// <remarks/>
final,
}

/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransRefundType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(profileTransPriorAuthCaptureType))]
Expand Down Expand Up @@ -2694,6 +2768,9 @@ public partial class transactionRequestType : object, System.ComponentModel.INot
/// <remarks/>
public nameAndAddressType shipFrom;

/// <remarks/>
public authorizationIndicatorType authorizationIndicatorType;

public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

protected void RaisePropertyChanged(string propertyName) {
Expand Down Expand Up @@ -3415,6 +3492,16 @@ public partial class customerPaymentProfileMaskedType : customerPaymentProfileBa
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("subscriptionId", IsNullable=false)]
public string[] subscriptionIds;

/// <remarks/>
public string originalNetworkTransId;

/// <remarks/>
public decimal originalAuthAmount;

/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool originalAuthAmountSpecified;
}

/// <remarks/>
Expand Down Expand Up @@ -3468,6 +3555,9 @@ public partial class customerPaymentProfileType : customerPaymentProfileBaseType
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool defaultPaymentProfileSpecified;

/// <remarks/>
public subsequentAuthInformation subsequentAuthInformation;
}

/// <remarks/>
Expand Down Expand Up @@ -6020,6 +6110,9 @@ public enum settingNameEnum {

/// <remarks/>
hostedProfileSaveButtonText,

/// <remarks/>
hostedPaymentVisaCheckoutOptions,
}

/// <remarks/>
Expand Down Expand Up @@ -6450,6 +6543,9 @@ public enum paymentMethodsTypeEnum {

/// <remarks/>
AndroidPay,

/// <remarks/>
GooglePay,
}

/// <remarks/>
Expand Down
Loading

0 comments on commit 705b310

Please sign in to comment.