Skip to content

Commit 7cf85d2

Browse files
author
Sunny Raj Rathod
authored
Merge pull request AuthorizeNet#208 from AuthorizeNet/future
Merge future into master
2 parents c5c788a + 9cf1863 commit 7cf85d2

11 files changed

+728
-52
lines changed

Authorize.NET/Api/Contracts/V1/AnetApiSchema.generated.cs

Lines changed: 219 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@ public partial class processorType : object, System.ComponentModel.INotifyProper
6969
/// <remarks/>
7070
public string name;
7171

72+
/// <remarks/>
73+
public int id;
74+
75+
/// <remarks/>
76+
[System.Xml.Serialization.XmlArrayItemAttribute("cardType")]
77+
public string[] cardTypes;
78+
7279
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
7380

7481
protected void RaisePropertyChanged(string propertyName) {
@@ -152,6 +159,9 @@ public partial class creditCardMaskedType : object, System.ComponentModel.INotif
152159
/// <remarks/>
153160
public cardArt cardArt;
154161

162+
/// <remarks/>
163+
public string issuerNumber;
164+
155165
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
156166

157167
protected void RaisePropertyChanged(string propertyName) {
@@ -1444,6 +1454,15 @@ public partial class transactionDetailsType : object, System.ComponentModel.INot
14441454
/// <remarks/>
14451455
public customerProfileIdType profile;
14461456

1457+
/// <remarks/>
1458+
public extendedAmountType surcharge;
1459+
1460+
/// <remarks/>
1461+
public string employeeId;
1462+
1463+
/// <remarks/>
1464+
public extendedAmountType tip;
1465+
14471466
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
14481467

14491468
protected void RaisePropertyChanged(string propertyName) {
@@ -2301,6 +2320,18 @@ public partial class transactionRequestType : object, System.ComponentModel.INot
23012320
[System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)]
23022321
public userField[] userFields;
23032322

2323+
/// <remarks/>
2324+
public extendedAmountType surcharge;
2325+
2326+
/// <remarks/>
2327+
public string merchantDescriptor;
2328+
2329+
/// <remarks/>
2330+
public subMerchantType subMerchant;
2331+
2332+
/// <remarks/>
2333+
public extendedAmountType tip;
2334+
23042335
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
23052336

23062337
protected void RaisePropertyChanged(string propertyName) {
@@ -2804,6 +2835,9 @@ public partial class transRetailInfoType : object, System.ComponentModel.INotify
28042835
/// <remarks/>
28052836
public string customerSignature;
28062837

2838+
/// <remarks/>
2839+
public string terminalNumber;
2840+
28072841
public transRetailInfoType() {
28082842
this.marketType = "2";
28092843
}
@@ -2842,6 +2876,57 @@ protected void RaisePropertyChanged(string propertyName) {
28422876
}
28432877
}
28442878

2879+
/// <remarks/>
2880+
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
2881+
[System.SerializableAttribute()]
2882+
[System.Diagnostics.DebuggerStepThroughAttribute()]
2883+
[System.ComponentModel.DesignerCategoryAttribute("code")]
2884+
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
2885+
public partial class subMerchantType : object, System.ComponentModel.INotifyPropertyChanged {
2886+
2887+
/// <remarks/>
2888+
public string identifier;
2889+
2890+
/// <remarks/>
2891+
public string doingBusinessAs;
2892+
2893+
/// <remarks/>
2894+
public string paymentServiceProviderName;
2895+
2896+
/// <remarks/>
2897+
public string paymentServiceFacilitator;
2898+
2899+
/// <remarks/>
2900+
public string streetAddress;
2901+
2902+
/// <remarks/>
2903+
public string phone;
2904+
2905+
/// <remarks/>
2906+
public string email;
2907+
2908+
/// <remarks/>
2909+
public string postalCode;
2910+
2911+
/// <remarks/>
2912+
public string city;
2913+
2914+
/// <remarks/>
2915+
public string regionCode;
2916+
2917+
/// <remarks/>
2918+
public string countryCode;
2919+
2920+
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
2921+
2922+
protected void RaisePropertyChanged(string propertyName) {
2923+
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
2924+
if ((propertyChanged != null)) {
2925+
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
2926+
}
2927+
}
2928+
}
2929+
28452930
/// <remarks/>
28462931
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
28472932
[System.SerializableAttribute()]
@@ -3158,6 +3243,10 @@ public partial class ARBSubscriptionMaskedType : object, System.ComponentModel.I
31583243
/// <remarks/>
31593244
public orderType order;
31603245

3246+
/// <remarks/>
3247+
[System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)]
3248+
public arbTransaction[] arbTransactions;
3249+
31613250
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
31623251

31633252
protected void RaisePropertyChanged(string propertyName) {
@@ -3248,6 +3337,51 @@ public enum ARBSubscriptionUnitEnum {
32483337
months,
32493338
}
32503339

3340+
/// <remarks/>
3341+
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
3342+
[System.SerializableAttribute()]
3343+
[System.Diagnostics.DebuggerStepThroughAttribute()]
3344+
[System.ComponentModel.DesignerCategoryAttribute("code")]
3345+
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
3346+
public partial class arbTransaction : object, System.ComponentModel.INotifyPropertyChanged {
3347+
3348+
/// <remarks/>
3349+
public string transId;
3350+
3351+
/// <remarks/>
3352+
public string response;
3353+
3354+
/// <remarks/>
3355+
public System.DateTime submitTimeUTC;
3356+
3357+
/// <remarks/>
3358+
[System.Xml.Serialization.XmlIgnoreAttribute()]
3359+
public bool submitTimeUTCSpecified;
3360+
3361+
/// <remarks/>
3362+
public int payNum;
3363+
3364+
/// <remarks/>
3365+
[System.Xml.Serialization.XmlIgnoreAttribute()]
3366+
public bool payNumSpecified;
3367+
3368+
/// <remarks/>
3369+
public int attemptNum;
3370+
3371+
/// <remarks/>
3372+
[System.Xml.Serialization.XmlIgnoreAttribute()]
3373+
public bool attemptNumSpecified;
3374+
3375+
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
3376+
3377+
protected void RaisePropertyChanged(string propertyName) {
3378+
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
3379+
if ((propertyChanged != null)) {
3380+
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
3381+
}
3382+
}
3383+
}
3384+
32513385
/// <remarks/>
32523386
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
32533387
[System.SerializableAttribute()]
@@ -3591,16 +3725,22 @@ protected void RaisePropertyChanged(string propertyName) {
35913725
[System.Diagnostics.DebuggerStepThroughAttribute()]
35923726
[System.ComponentModel.DesignerCategoryAttribute("code")]
35933727
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
3594-
public partial class webCheckOutDataType : object, System.ComponentModel.INotifyPropertyChanged {
3728+
public partial class webCheckOutDataTypeToken : object, System.ComponentModel.INotifyPropertyChanged {
35953729

35963730
/// <remarks/>
3597-
public webCheckOutTypeEnum type;
3731+
public string cardNumber;
35983732

35993733
/// <remarks/>
3600-
public string id;
3734+
public string expirationDate;
36013735

36023736
/// <remarks/>
3603-
public webCheckOutDataTypeToken token;
3737+
public string cardCode;
3738+
3739+
/// <remarks/>
3740+
public string zip;
3741+
3742+
/// <remarks/>
3743+
public string fullName;
36043744

36053745
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
36063746

@@ -3612,41 +3752,25 @@ protected void RaisePropertyChanged(string propertyName) {
36123752
}
36133753
}
36143754

3615-
/// <remarks/>
3616-
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
3617-
[System.SerializableAttribute()]
3618-
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
3619-
public enum webCheckOutTypeEnum {
3620-
3621-
/// <remarks/>
3622-
PAN,
3623-
3624-
/// <remarks/>
3625-
TOKEN,
3626-
}
3627-
36283755
/// <remarks/>
36293756
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
36303757
[System.SerializableAttribute()]
36313758
[System.Diagnostics.DebuggerStepThroughAttribute()]
36323759
[System.ComponentModel.DesignerCategoryAttribute("code")]
3633-
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
3634-
public partial class webCheckOutDataTypeToken : object, System.ComponentModel.INotifyPropertyChanged {
3635-
3636-
/// <remarks/>
3637-
public string cardNumber;
3760+
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
3761+
public partial class webCheckOutDataType : object, System.ComponentModel.INotifyPropertyChanged {
36383762

36393763
/// <remarks/>
3640-
public string expirationDate;
3764+
public webCheckOutTypeEnum type;
36413765

36423766
/// <remarks/>
3643-
public string cardCode;
3767+
public string id;
36443768

36453769
/// <remarks/>
3646-
public string zip;
3770+
public webCheckOutDataTypeToken token;
36473771

36483772
/// <remarks/>
3649-
public string fullName;
3773+
public bankAccountType bankToken;
36503774

36513775
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
36523776

@@ -3658,6 +3782,19 @@ protected void RaisePropertyChanged(string propertyName) {
36583782
}
36593783
}
36603784

3785+
/// <remarks/>
3786+
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
3787+
[System.SerializableAttribute()]
3788+
[System.Xml.Serialization.XmlTypeAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
3789+
public enum webCheckOutTypeEnum {
3790+
3791+
/// <remarks/>
3792+
PAN,
3793+
3794+
/// <remarks/>
3795+
TOKEN,
3796+
}
3797+
36613798
/// <remarks/>
36623799
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
36633800
[System.SerializableAttribute()]
@@ -4298,6 +4435,13 @@ public partial class getCustomerProfileRequest : ANetApiRequest {
42984435
/// <remarks/>
42994436
[System.Xml.Serialization.XmlIgnoreAttribute()]
43004437
public bool unmaskExpirationDateSpecified;
4438+
4439+
/// <remarks/>
4440+
public bool includeIssuerInfo;
4441+
4442+
/// <remarks/>
4443+
[System.Xml.Serialization.XmlIgnoreAttribute()]
4444+
public bool includeIssuerInfoSpecified;
43014445
}
43024446

43034447
/// <remarks/>
@@ -4338,6 +4482,13 @@ public partial class getCustomerPaymentProfileRequest : ANetApiRequest {
43384482
/// <remarks/>
43394483
[System.Xml.Serialization.XmlIgnoreAttribute()]
43404484
public bool unmaskExpirationDateSpecified;
4485+
4486+
/// <remarks/>
4487+
public bool includeIssuerInfo;
4488+
4489+
/// <remarks/>
4490+
[System.Xml.Serialization.XmlIgnoreAttribute()]
4491+
public bool includeIssuerInfoSpecified;
43414492
}
43424493

43434494
/// <remarks/>
@@ -5407,6 +5558,15 @@ public enum settingNameEnum {
54075558

54085559
/// <remarks/>
54095560
hostedPaymentStyleOptions,
5561+
5562+
/// <remarks/>
5563+
typeEmailReceipt,
5564+
5565+
/// <remarks/>
5566+
hostedProfilePaymentOptions,
5567+
5568+
/// <remarks/>
5569+
hostedProfileSaveButtonText,
54105570
}
54115571

54125572
/// <remarks/>
@@ -5598,6 +5758,13 @@ public partial class ARBGetSubscriptionRequest : ANetApiRequest {
55985758

55995759
/// <remarks/>
56005760
public string subscriptionId;
5761+
5762+
/// <remarks/>
5763+
public bool includeTransactions;
5764+
5765+
/// <remarks/>
5766+
[System.Xml.Serialization.XmlIgnoreAttribute()]
5767+
public bool includeTransactionsSpecified;
56015768
}
56025769

56035770
/// <remarks/>
@@ -5774,6 +5941,9 @@ public partial class getMerchantDetailsResponse : ANetApiResponse {
57745941
/// <remarks/>
57755942
[System.Xml.Serialization.XmlArrayItemAttribute("currency")]
57765943
public string[] currencies;
5944+
5945+
/// <remarks/>
5946+
public string publicClientKey;
57775947
}
57785948

57795949
/// <remarks/>
@@ -5818,4 +5988,27 @@ public enum paymentMethodsTypeEnum {
58185988
/// <remarks/>
58195989
AndroidPay,
58205990
}
5991+
5992+
/// <remarks/>
5993+
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
5994+
[System.SerializableAttribute()]
5995+
[System.Diagnostics.DebuggerStepThroughAttribute()]
5996+
[System.ComponentModel.DesignerCategoryAttribute("code")]
5997+
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
5998+
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
5999+
public partial class updateMerchantDetailsRequest : ANetApiRequest {
6000+
6001+
/// <remarks/>
6002+
public bool isTestMode;
6003+
}
6004+
6005+
/// <remarks/>
6006+
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
6007+
[System.SerializableAttribute()]
6008+
[System.Diagnostics.DebuggerStepThroughAttribute()]
6009+
[System.ComponentModel.DesignerCategoryAttribute("code")]
6010+
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd")]
6011+
[System.Xml.Serialization.XmlRootAttribute(Namespace="AnetApi/xml/v1/schema/AnetApiSchema.xsd", IsNullable=false)]
6012+
public partial class updateMerchantDetailsResponse : ANetApiResponse {
6013+
}
58216014
}

0 commit comments

Comments
 (0)