Skip to content

Commit 144204e

Browse files
committed
Release 4.3.11
1 parent 7b76698 commit 144204e

26 files changed

+208
-176
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ NOTE: RestSharp versions greater than [106.2.1, 107) have a bug which causes fil
3232
## Installation
3333
```
3434
# Package Manager
35-
Install-Package Wallee -Version 4.3.8
35+
Install-Package Wallee -Version 4.3.11
3636
# .NET CLI
37-
dotnet add package Wallee --version 4.3.8
37+
dotnet add package Wallee --version 4.3.11
3838
# Paket CLI
39-
paket add Wallee --version 4.3.8
39+
paket add Wallee --version 4.3.11
4040
# PackageReference
41-
<PackageReference Include="Wallee" Version="4.3.8" />
41+
<PackageReference Include="Wallee" Version="4.3.11" />
4242
```
4343

4444
Then include the DLL (under the `bin` folder) in the C# project, and use the namespaces:

src/Wallee/Client/ApiClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public Object CallApi(
155155
{
156156

157157
Dictionary<String, String> defaultHeaderParams = new Dictionary<String, String>() {
158-
{"x-meta-sdk-version", "4.3.8"},
158+
{"x-meta-sdk-version", "4.3.11"},
159159
{"x-meta-sdk-language", "csharp"},
160160
{"x-meta-sdk-provider", "wallee"},
161161
{"x-meta-sdk-language-version", Environment.Version.ToString()}

src/Wallee/Client/Configuration.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class Configuration : IReadableConfiguration
1919
/// Version of the package.
2020
/// </summary>
2121
/// <value>Version of the package.</value>
22-
public const string Version = "4.3.8";
22+
public const string Version = "4.3.11";
2323

2424
/// <summary>
2525
/// Identifier for ISO 8601 DateTime Format
@@ -90,7 +90,7 @@ public Configuration(string applicationUserID, string authenticationKey)
9090
}
9191
_authenticationKey = authenticationKey;
9292
_applicationUserID = applicationUserID;
93-
UserAgent = "Wallee/4.3.8/csharp";
93+
UserAgent = "Wallee/4.3.11/csharp";
9494
BasePath = "https://app-wallee.com:443/api";
9595
DefaultHeader = new ConcurrentDictionary<string, string>();
9696
ApiKey = new ConcurrentDictionary<string, string>();
@@ -338,8 +338,8 @@ public static String ToDebugReport()
338338
String report = "C# SDK (Wallee) Debug Report:\n";
339339
report += " OS: " + System.Environment.OSVersion + "\n";
340340
report += " .NET Framework Version: " + System.Environment.Version + "\n";
341-
report += " Version of the API: 4.3.8\n";
342-
report += " SDK Package Version: 4.3.8\n";
341+
report += " Version of the API: 4.3.11\n";
342+
report += " SDK Package Version: 4.3.11\n";
343343

344344
return report;
345345
}

src/Wallee/Model/Charge.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,16 @@ namespace Wallee.Model
2020
[DataContract]
2121
public partial class Charge : TransactionAwareEntity, IEquatable<Charge>
2222
{
23+
/// <summary>
24+
/// Gets or Sets State
25+
/// </summary>
26+
[DataMember(Name="state", EmitDefaultValue=false)]
27+
public ChargeState? State { get; set; }
28+
/// <summary>
29+
/// Gets or Sets Type
30+
/// </summary>
31+
[DataMember(Name="type", EmitDefaultValue=false)]
32+
public ChargeType? Type { get; set; }
2333
/// <summary>
2434
/// Initializes a new instance of the <see cref="Charge" /> class.
2535
/// </summary>
@@ -63,11 +73,6 @@ public Charge()
6373
[DataMember(Name="spaceViewId", EmitDefaultValue=false)]
6474
public long? SpaceViewId { get; private set; }
6575

66-
/// <summary>
67-
/// Gets or Sets State
68-
/// </summary>
69-
[DataMember(Name="state", EmitDefaultValue=false)]
70-
public ChargeState State { get; private set; }
7176

7277
/// <summary>
7378
/// Gets or Sets TimeZone
@@ -87,11 +92,6 @@ public Charge()
8792
[DataMember(Name="transaction", EmitDefaultValue=false)]
8893
public Transaction Transaction { get; private set; }
8994

90-
/// <summary>
91-
/// Gets or Sets Type
92-
/// </summary>
93-
[DataMember(Name="type", EmitDefaultValue=false)]
94-
public ChargeType Type { get; private set; }
9595

9696
/// <summary>
9797
/// The failure message describes for an end user why the charge is failed in the language of the user. This is only provided when the charge is marked as failed.

src/Wallee/Model/ChargeAttempt.cs

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,32 @@ namespace Wallee.Model
2020
[DataContract]
2121
public partial class ChargeAttempt : TransactionAwareEntity, IEquatable<ChargeAttempt>
2222
{
23+
/// <summary>
24+
/// Gets or Sets CompletionBehavior
25+
/// </summary>
26+
[DataMember(Name="completionBehavior", EmitDefaultValue=false)]
27+
public TransactionCompletionBehavior? CompletionBehavior { get; set; }
28+
/// <summary>
29+
/// The customers presence indicates which kind of customer interaction was used during the charge attempt.
30+
/// </summary>
31+
/// <value>The customers presence indicates which kind of customer interaction was used during the charge attempt.</value>
32+
[DataMember(Name="customersPresence", EmitDefaultValue=false)]
33+
public CustomersPresence? CustomersPresence { get; set; }
34+
/// <summary>
35+
/// Gets or Sets Environment
36+
/// </summary>
37+
[DataMember(Name="environment", EmitDefaultValue=false)]
38+
public ChargeAttemptEnvironment? Environment { get; set; }
39+
/// <summary>
40+
/// Gets or Sets State
41+
/// </summary>
42+
[DataMember(Name="state", EmitDefaultValue=false)]
43+
public ChargeAttemptState? State { get; set; }
44+
/// <summary>
45+
/// Gets or Sets WalletType
46+
/// </summary>
47+
[DataMember(Name="walletType", EmitDefaultValue=false)]
48+
public WalletType? WalletType { get; set; }
2349
/// <summary>
2450
/// Initializes a new instance of the <see cref="ChargeAttempt" /> class.
2551
/// </summary>
@@ -37,11 +63,6 @@ public ChargeAttempt()
3763
[DataMember(Name="charge", EmitDefaultValue=false)]
3864
public Charge Charge { get; private set; }
3965

40-
/// <summary>
41-
/// Gets or Sets CompletionBehavior
42-
/// </summary>
43-
[DataMember(Name="completionBehavior", EmitDefaultValue=false)]
44-
public TransactionCompletionBehavior CompletionBehavior { get; private set; }
4566

4667
/// <summary>
4768
/// Gets or Sets ConnectorConfiguration
@@ -56,18 +77,7 @@ public ChargeAttempt()
5677
[DataMember(Name="createdOn", EmitDefaultValue=false)]
5778
public DateTime? CreatedOn { get; private set; }
5879

59-
/// <summary>
60-
/// The customers presence indicates which kind of customer interaction was used during the charge attempt.
61-
/// </summary>
62-
/// <value>The customers presence indicates which kind of customer interaction was used during the charge attempt.</value>
63-
[DataMember(Name="customersPresence", EmitDefaultValue=false)]
64-
public CustomersPresence CustomersPresence { get; private set; }
6580

66-
/// <summary>
67-
/// Gets or Sets Environment
68-
/// </summary>
69-
[DataMember(Name="environment", EmitDefaultValue=false)]
70-
public ChargeAttemptEnvironment Environment { get; private set; }
7181

7282
/// <summary>
7383
/// Gets or Sets FailedOn
@@ -136,11 +146,6 @@ public ChargeAttempt()
136146
[DataMember(Name="spaceViewId", EmitDefaultValue=false)]
137147
public long? SpaceViewId { get; private set; }
138148

139-
/// <summary>
140-
/// Gets or Sets State
141-
/// </summary>
142-
[DataMember(Name="state", EmitDefaultValue=false)]
143-
public ChargeAttemptState State { get; private set; }
144149

145150
/// <summary>
146151
/// Gets or Sets SucceededOn
@@ -186,11 +191,6 @@ public ChargeAttempt()
186191
[DataMember(Name="version", EmitDefaultValue=false)]
187192
public int? Version { get; private set; }
188193

189-
/// <summary>
190-
/// Gets or Sets WalletType
191-
/// </summary>
192-
[DataMember(Name="walletType", EmitDefaultValue=false)]
193-
public WalletType WalletType { get; private set; }
194194

195195
/// <summary>
196196
/// Returns the string presentation of the object

src/Wallee/Model/ChargeFlowLevel.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ namespace Wallee.Model
2020
[DataContract]
2121
public partial class ChargeFlowLevel : TransactionAwareEntity, IEquatable<ChargeFlowLevel>
2222
{
23+
/// <summary>
24+
/// Gets or Sets State
25+
/// </summary>
26+
[DataMember(Name="state", EmitDefaultValue=false)]
27+
public ChargeFlowLevelState? State { get; set; }
2328
/// <summary>
2429
/// Initializes a new instance of the <see cref="ChargeFlowLevel" /> class.
2530
/// </summary>
@@ -57,11 +62,6 @@ public ChargeFlowLevel()
5762
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
5863
public DateTime? PlannedPurgeDate { get; private set; }
5964

60-
/// <summary>
61-
/// Gets or Sets State
62-
/// </summary>
63-
[DataMember(Name="state", EmitDefaultValue=false)]
64-
public ChargeFlowLevelState State { get; private set; }
6565

6666
/// <summary>
6767
/// Gets or Sets SynchronousCharge

src/Wallee/Model/ConnectorInvocation.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ namespace Wallee.Model
2020
[DataContract]
2121
public partial class ConnectorInvocation : TransactionAwareEntity, IEquatable<ConnectorInvocation>
2222
{
23+
/// <summary>
24+
/// Gets or Sets Stage
25+
/// </summary>
26+
[DataMember(Name="stage", EmitDefaultValue=false)]
27+
public ConnectorInvocationStage? Stage { get; set; }
2328
/// <summary>
2429
/// Initializes a new instance of the <see cref="ConnectorInvocation" /> class.
2530
/// </summary>
@@ -45,11 +50,6 @@ public ConnectorInvocation()
4550
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
4651
public DateTime? PlannedPurgeDate { get; private set; }
4752

48-
/// <summary>
49-
/// Gets or Sets Stage
50-
/// </summary>
51-
[DataMember(Name="stage", EmitDefaultValue=false)]
52-
public ConnectorInvocationStage Stage { get; private set; }
5353

5454
/// <summary>
5555
/// Gets or Sets TimeTookInMilliseconds

src/Wallee/Model/DeliveryIndication.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ namespace Wallee.Model
2020
[DataContract]
2121
public partial class DeliveryIndication : TransactionAwareEntity, IEquatable<DeliveryIndication>
2222
{
23+
/// <summary>
24+
/// Gets or Sets State
25+
/// </summary>
26+
[DataMember(Name="state", EmitDefaultValue=false)]
27+
public DeliveryIndicationState? State { get; set; }
2328
/// <summary>
2429
/// Initializes a new instance of the <see cref="DeliveryIndication" /> class.
2530
/// </summary>
@@ -81,11 +86,6 @@ public DeliveryIndication()
8186
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
8287
public DateTime? PlannedPurgeDate { get; private set; }
8388

84-
/// <summary>
85-
/// Gets or Sets State
86-
/// </summary>
87-
[DataMember(Name="state", EmitDefaultValue=false)]
88-
public DeliveryIndicationState State { get; private set; }
8989

9090
/// <summary>
9191
/// Gets or Sets TimeoutOn

src/Wallee/Model/InstallmentPaymentSlice.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ namespace Wallee.Model
2020
[DataContract]
2121
public partial class InstallmentPaymentSlice : TransactionAwareEntity, IEquatable<InstallmentPaymentSlice>
2222
{
23+
/// <summary>
24+
/// Gets or Sets State
25+
/// </summary>
26+
[DataMember(Name="state", EmitDefaultValue=false)]
27+
public InstallmentPaymentSliceState? State { get; set; }
2328
/// <summary>
2429
/// Initializes a new instance of the <see cref="InstallmentPaymentSlice" /> class.
2530
/// </summary>
@@ -63,11 +68,6 @@ public InstallmentPaymentSlice()
6368
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
6469
public DateTime? PlannedPurgeDate { get; private set; }
6570

66-
/// <summary>
67-
/// Gets or Sets State
68-
/// </summary>
69-
[DataMember(Name="state", EmitDefaultValue=false)]
70-
public InstallmentPaymentSliceState State { get; private set; }
7171

7272
/// <summary>
7373
/// Gets or Sets Transaction

src/Wallee/Model/InvoiceReconciliationRecord.cs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,21 @@ namespace Wallee.Model
2020
[DataContract]
2121
public partial class InvoiceReconciliationRecord : TransactionAwareEntity, IEquatable<InvoiceReconciliationRecord>
2222
{
23+
/// <summary>
24+
/// Gets or Sets Environment
25+
/// </summary>
26+
[DataMember(Name="environment", EmitDefaultValue=false)]
27+
public ChargeAttemptEnvironment? Environment { get; set; }
28+
/// <summary>
29+
/// Gets or Sets RejectionStatus
30+
/// </summary>
31+
[DataMember(Name="rejectionStatus", EmitDefaultValue=false)]
32+
public InvoiceReconciliationRecordRejectionStatus? RejectionStatus { get; set; }
33+
/// <summary>
34+
/// Gets or Sets State
35+
/// </summary>
36+
[DataMember(Name="state", EmitDefaultValue=false)]
37+
public InvoiceReconciliationRecordState? State { get; set; }
2338
/// <summary>
2439
/// Initializes a new instance of the <see cref="InvoiceReconciliationRecord" /> class.
2540
/// </summary>
@@ -81,11 +96,6 @@ public InvoiceReconciliationRecord()
8196
[DataMember(Name="discardedOn", EmitDefaultValue=false)]
8297
public DateTime? DiscardedOn { get; private set; }
8398

84-
/// <summary>
85-
/// Gets or Sets Environment
86-
/// </summary>
87-
[DataMember(Name="environment", EmitDefaultValue=false)]
88-
public ChargeAttemptEnvironment Environment { get; private set; }
8999

90100
/// <summary>
91101
/// Gets or Sets FamilyName
@@ -154,11 +164,6 @@ public InvoiceReconciliationRecord()
154164
[DataMember(Name="referenceNumber", EmitDefaultValue=false)]
155165
public string ReferenceNumber { get; private set; }
156166

157-
/// <summary>
158-
/// Gets or Sets RejectionStatus
159-
/// </summary>
160-
[DataMember(Name="rejectionStatus", EmitDefaultValue=false)]
161-
public InvoiceReconciliationRecordRejectionStatus RejectionStatus { get; private set; }
162167

163168
/// <summary>
164169
/// Gets or Sets ResolvedBy
@@ -179,11 +184,6 @@ public InvoiceReconciliationRecord()
179184
[DataMember(Name="senderBankAccount", EmitDefaultValue=false)]
180185
public string SenderBankAccount { get; private set; }
181186

182-
/// <summary>
183-
/// Gets or Sets State
184-
/// </summary>
185-
[DataMember(Name="state", EmitDefaultValue=false)]
186-
public InvoiceReconciliationRecordState State { get; private set; }
187187

188188
/// <summary>
189189
/// Gets or Sets Street

0 commit comments

Comments
 (0)