diff --git a/README.md b/README.md
index b6f593d..af4bf6c 100644
--- a/README.md
+++ b/README.md
@@ -31,13 +31,13 @@ Install-Package JsonSubTypes
## Installation
```
# Package Manager
-Install-Package Wallee -Version 5.1.0
+Install-Package Wallee -Version 5.2.0
# .NET CLI
-dotnet add package Wallee --version 5.1.0
+dotnet add package Wallee --version 5.2.0
# Paket CLI
-paket add Wallee --version 5.1.0
+paket add Wallee --version 5.2.0
# PackageReference
-
+
```
Then include the DLL (under the `bin` folder) in the C# project, and use the namespaces:
@@ -49,6 +49,19 @@ using Wallee.Model;
## Getting Started
+Instantiate a configuration like so:
+```csharp
+new Configuration(this.applicationUserID, this.authenticationKey)
+```
+Or if you want to customize the RestSharp client that's being used underneath (e.g set the proxy), use the overloaded constructor:
+```csharp
+new Configuration(this.applicationUserID, this.authenticationKey, new RestClientOptions()
+{
+ Proxy = new WebProxy("http://example.com")
+});
+```
+
+Timeout is customizable separately via the ```Configuration.TimeOut``` property.
```csharp
using System;
diff --git a/src/Wallee/Client/ApiClient.cs b/src/Wallee/Client/ApiClient.cs
index 340959c..cf834b6 100644
--- a/src/Wallee/Client/ApiClient.cs
+++ b/src/Wallee/Client/ApiClient.cs
@@ -54,23 +54,12 @@ public ApiClient(Configuration config)
{
Configuration = config;
- RestClient = new RestClient(Configuration.BasePath);
- }
-
- ///
- /// Initializes a new instance of the class
- /// with default configuration.
- ///
- /// The base path.
- public ApiClient(String basePath = "https://app-wallee.com:443/api")
- {
- if (String.IsNullOrEmpty(basePath))
+ if (String.IsNullOrEmpty(Configuration.BasePath))
throw new ArgumentException("basePath cannot be empty");
- var options = new RestClientOptions(basePath)
- {
- MaxTimeout = 600000
- };
+ var options = Configuration.RestClientOptions;
+ options.BaseUrl = new Uri(Configuration.BasePath);
+ options.MaxTimeout = 600000;
RestClient = new RestClient(options);
}
@@ -159,7 +148,7 @@ public Object CallApi(
{
Dictionary defaultHeaderParams = new Dictionary() {
- {"x-meta-sdk-version", "5.1.0"},
+ {"x-meta-sdk-version", "5.2.0"},
{"x-meta-sdk-language", "csharp"},
{"x-meta-sdk-provider", "wallee"},
{"x-meta-sdk-language-version", Environment.Version.ToString()}
@@ -564,7 +553,7 @@ private String ToQueryString(List> queryParams)
/// https://docs.microsoft.com/en-us/dotnet/api/system.net.httpwebrequest.timeout?view=netcore-3.1
///
public void ResetTimeout(){
- RestClient.Options.MaxTimeout = 100 * 1000;
+ Configuration.Timeout = 25;
}
}
diff --git a/src/Wallee/Client/Configuration.cs b/src/Wallee/Client/Configuration.cs
index ef34ccc..9ce1bb1 100644
--- a/src/Wallee/Client/Configuration.cs
+++ b/src/Wallee/Client/Configuration.cs
@@ -5,6 +5,8 @@
using System.IO;
using System.Linq;
using System.Text;
+using RestSharp;
+
namespace Wallee.Client
{
@@ -19,7 +21,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
///
/// Version of the package.
- public const string Version = "5.1.0";
+ public const string Version = "5.2.0";
///
/// Identifier for ISO 8601 DateTime Format
@@ -80,7 +82,8 @@ public class Configuration : IReadableConfiguration
///
/// The ID of application user.
/// The secret authentication key.
- public Configuration(string applicationUserID, string authenticationKey)
+ /// Rest client options for authentication key.
+ public Configuration(string applicationUserID, string authenticationKey, RestClientOptions restClientOptions)
{
if(applicationUserID == null){
throw new ArgumentException("Parameter cannot be null", "applicationUserID");
@@ -90,7 +93,8 @@ public Configuration(string applicationUserID, string authenticationKey)
}
_authenticationKey = authenticationKey;
_applicationUserID = applicationUserID;
- UserAgent = "Wallee/5.1.0/csharp";
+ _restClientOptions = restClientOptions;
+ UserAgent = "Wallee/5.2.0/csharp";
BasePath = "https://app-wallee.com:443/api";
DefaultHeader = new ConcurrentDictionary();
ApiKey = new ConcurrentDictionary();
@@ -99,6 +103,16 @@ public Configuration(string applicationUserID, string authenticationKey)
Timeout = 25;
}
+
+ ///
+ /// Initializes a new instance of the class
+ ///
+ /// The ID of application user.
+ /// The secret authentication key.
+ public Configuration(string applicationUserID, string authenticationKey) : this(applicationUserID, authenticationKey, new RestClientOptions())
+ {
+ }
+
#endregion Constructors
@@ -154,6 +168,17 @@ public string AuthenticationKey
get { return _authenticationKey; }
}
+ private readonly RestClientOptions _restClientOptions;
+
+ ///
+ /// Gets the Rest Client Options.
+ ///
+ /// The rest client options.
+ public RestClientOptions RestClientOptions
+ {
+ get { return _restClientOptions; }
+ }
+
///
/// Gets or sets the default header.
///
@@ -321,7 +346,7 @@ public void AddDefaultHeader(string key, string value)
///
public ApiClient CreateApiClient()
{
- return new ApiClient(BasePath) { Configuration = this };
+ return new ApiClient(this);
}
@@ -333,8 +358,8 @@ public static String ToDebugReport()
String report = "C# SDK (Wallee) Debug Report:\n";
report += " OS: " + System.Environment.OSVersion + "\n";
report += " .NET Framework Version: " + System.Environment.Version + "\n";
- report += " Version of the API: 5.1.0\n";
- report += " SDK Package Version: 5.1.0\n";
+ report += " Version of the API: 5.2.0\n";
+ report += " SDK Package Version: 5.2.0\n";
return report;
}
diff --git a/src/Wallee/Model/AbstractAccountUpdate.cs b/src/Wallee/Model/AbstractAccountUpdate.cs
index 382aca0..4dd8858 100644
--- a/src/Wallee/Model/AbstractAccountUpdate.cs
+++ b/src/Wallee/Model/AbstractAccountUpdate.cs
@@ -28,8 +28,9 @@ public AbstractAccountUpdate()
}
///
- /// Gets or Sets LastModifiedDate
+ /// The date and time when the object was last modified.
///
+ /// The date and time when the object was last modified.
[DataMember(Name="lastModifiedDate", EmitDefaultValue=false)]
public DateTime? LastModifiedDate { get; set; }
diff --git a/src/Wallee/Model/AbstractApplicationUserUpdate.cs b/src/Wallee/Model/AbstractApplicationUserUpdate.cs
index f6dcfce..5b81492 100644
--- a/src/Wallee/Model/AbstractApplicationUserUpdate.cs
+++ b/src/Wallee/Model/AbstractApplicationUserUpdate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class AbstractApplicationUserUpdate : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
diff --git a/src/Wallee/Model/AbstractCustomerActive.cs b/src/Wallee/Model/AbstractCustomerActive.cs
index 8acb1c5..d274f56 100644
--- a/src/Wallee/Model/AbstractCustomerActive.cs
+++ b/src/Wallee/Model/AbstractCustomerActive.cs
@@ -52,8 +52,9 @@ public AbstractCustomerActive()
public string GivenName { get; set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; set; }
diff --git a/src/Wallee/Model/AbstractHumanUserUpdate.cs b/src/Wallee/Model/AbstractHumanUserUpdate.cs
index 65ff0bd..477f434 100644
--- a/src/Wallee/Model/AbstractHumanUserUpdate.cs
+++ b/src/Wallee/Model/AbstractHumanUserUpdate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class AbstractHumanUserUpdate : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
diff --git a/src/Wallee/Model/AbstractSpaceUpdate.cs b/src/Wallee/Model/AbstractSpaceUpdate.cs
index 6373e54..9c2c59e 100644
--- a/src/Wallee/Model/AbstractSpaceUpdate.cs
+++ b/src/Wallee/Model/AbstractSpaceUpdate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class AbstractSpaceUpdate : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
@@ -33,8 +34,9 @@ public AbstractSpaceUpdate()
}
///
- /// Gets or Sets LastModifiedDate
+ /// The date and time when the object was last modified.
///
+ /// The date and time when the object was last modified.
[DataMember(Name="lastModifiedDate", EmitDefaultValue=false)]
public DateTime? LastModifiedDate { get; set; }
diff --git a/src/Wallee/Model/AbstractSubscriptionAffiliateUpdate.cs b/src/Wallee/Model/AbstractSubscriptionAffiliateUpdate.cs
index 0414c44..611c5a3 100644
--- a/src/Wallee/Model/AbstractSubscriptionAffiliateUpdate.cs
+++ b/src/Wallee/Model/AbstractSubscriptionAffiliateUpdate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class AbstractSubscriptionAffiliateUpdate : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
@@ -33,8 +34,9 @@ public AbstractSubscriptionAffiliateUpdate()
}
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; set; }
diff --git a/src/Wallee/Model/AbstractSubscriptionProductActive.cs b/src/Wallee/Model/AbstractSubscriptionProductActive.cs
index 20542a9..d882654 100644
--- a/src/Wallee/Model/AbstractSubscriptionProductActive.cs
+++ b/src/Wallee/Model/AbstractSubscriptionProductActive.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class AbstractSubscriptionProductActive : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionProductState? State { get; set; }
///
diff --git a/src/Wallee/Model/AbstractTokenUpdate.cs b/src/Wallee/Model/AbstractTokenUpdate.cs
index 6f36ffb..13c412d 100644
--- a/src/Wallee/Model/AbstractTokenUpdate.cs
+++ b/src/Wallee/Model/AbstractTokenUpdate.cs
@@ -49,8 +49,9 @@ public AbstractTokenUpdate()
public bool? EnabledForOneClickPayment { get; set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; set; }
diff --git a/src/Wallee/Model/AbstractTransactionPending.cs b/src/Wallee/Model/AbstractTransactionPending.cs
index a039753..bce606e 100644
--- a/src/Wallee/Model/AbstractTransactionPending.cs
+++ b/src/Wallee/Model/AbstractTransactionPending.cs
@@ -91,8 +91,9 @@ public AbstractTransactionPending()
public string InvoiceMerchantReference { get; set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; set; }
diff --git a/src/Wallee/Model/AbstractWebhookListenerUpdate.cs b/src/Wallee/Model/AbstractWebhookListenerUpdate.cs
index 28b60a5..160eea8 100644
--- a/src/Wallee/Model/AbstractWebhookListenerUpdate.cs
+++ b/src/Wallee/Model/AbstractWebhookListenerUpdate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class AbstractWebhookListenerUpdate : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
diff --git a/src/Wallee/Model/AbstractWebhookUrlUpdate.cs b/src/Wallee/Model/AbstractWebhookUrlUpdate.cs
index 3453376..eeca3f6 100644
--- a/src/Wallee/Model/AbstractWebhookUrlUpdate.cs
+++ b/src/Wallee/Model/AbstractWebhookUrlUpdate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class AbstractWebhookUrlUpdate : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
diff --git a/src/Wallee/Model/Account.cs b/src/Wallee/Model/Account.cs
index 80a8e28..68ee77c 100644
--- a/src/Wallee/Model/Account.cs
+++ b/src/Wallee/Model/Account.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class Account : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public AccountState? State { get; private set; }
///
@@ -82,15 +83,16 @@ public Account()
public DateTime? DeletedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets LastModifiedDate
+ /// The date and time when the object was last modified.
///
+ /// The date and time when the object was last modified.
[DataMember(Name="lastModifiedDate", EmitDefaultValue=false)]
public DateTime? LastModifiedDate { get; private set; }
@@ -109,9 +111,9 @@ public Account()
public Account ParentAccount { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -139,9 +141,9 @@ public Account()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/AnalyticsQueryExecution.cs b/src/Wallee/Model/AnalyticsQueryExecution.cs
index 1cfc119..c0f1829 100644
--- a/src/Wallee/Model/AnalyticsQueryExecution.cs
+++ b/src/Wallee/Model/AnalyticsQueryExecution.cs
@@ -56,9 +56,9 @@ public AnalyticsQueryExecution()
public FailureReason FailureReason { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
diff --git a/src/Wallee/Model/BankAccount.cs b/src/Wallee/Model/BankAccount.cs
index e4cb8c3..6e36f05 100644
--- a/src/Wallee/Model/BankAccount.cs
+++ b/src/Wallee/Model/BankAccount.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class BankAccount : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public BankAccountState? State { get; private set; }
///
@@ -41,9 +42,9 @@ public BankAccount()
public string Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -55,16 +56,16 @@ public BankAccount()
public string Identifier { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -76,9 +77,9 @@ public BankAccount()
public long? Type { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/BankAccountType.cs b/src/Wallee/Model/BankAccountType.cs
index 58e79d7..11a669e 100644
--- a/src/Wallee/Model/BankAccountType.cs
+++ b/src/Wallee/Model/BankAccountType.cs
@@ -29,15 +29,16 @@ public BankAccountType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -48,8 +49,9 @@ public BankAccountType()
public Dictionary IdentifierName { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/BankTransaction.cs b/src/Wallee/Model/BankTransaction.cs
index 49792d9..e447254 100644
--- a/src/Wallee/Model/BankTransaction.cs
+++ b/src/Wallee/Model/BankTransaction.cs
@@ -26,8 +26,9 @@ public partial class BankTransaction : IEquatable
[DataMember(Name="flowDirection", EmitDefaultValue=false)]
public BankTransactionFlowDirection? FlowDirection { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public BankTransactionState? State { get; private set; }
///
@@ -53,9 +54,9 @@ public BankTransaction()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -74,23 +75,23 @@ public BankTransaction()
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -140,9 +141,9 @@ public BankTransaction()
public DateTime? ValueDate { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/BankTransactionSource.cs b/src/Wallee/Model/BankTransactionSource.cs
index ee3c34c..2627289 100644
--- a/src/Wallee/Model/BankTransactionSource.cs
+++ b/src/Wallee/Model/BankTransactionSource.cs
@@ -29,21 +29,23 @@ public BankTransactionSource()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/BankTransactionType.cs b/src/Wallee/Model/BankTransactionType.cs
index 76c7370..fd09699 100644
--- a/src/Wallee/Model/BankTransactionType.cs
+++ b/src/Wallee/Model/BankTransactionType.cs
@@ -29,21 +29,23 @@ public BankTransactionType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/Charge.cs b/src/Wallee/Model/Charge.cs
index 458871e..2275a53 100644
--- a/src/Wallee/Model/Charge.cs
+++ b/src/Wallee/Model/Charge.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class Charge : TransactionAwareEntity, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ChargeState? State { get; private set; }
///
@@ -55,15 +56,16 @@ public Charge()
public FailureReason FailureReason { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -101,9 +103,9 @@ public Charge()
public string UserFailureMessage { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ChargeAttempt.cs b/src/Wallee/Model/ChargeAttempt.cs
index 462b1cc..ce962a9 100644
--- a/src/Wallee/Model/ChargeAttempt.cs
+++ b/src/Wallee/Model/ChargeAttempt.cs
@@ -37,8 +37,9 @@ public partial class ChargeAttempt : TransactionAwareEntity, IEquatable
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ChargeAttemptState? State { get; private set; }
///
@@ -71,9 +72,9 @@ public ChargeAttempt()
public PaymentConnectorConfiguration ConnectorConfiguration { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -110,8 +111,9 @@ public ChargeAttempt()
public List Labels { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -122,9 +124,9 @@ public ChargeAttempt()
public DateTime? NextUpdateOn { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -185,9 +187,9 @@ public ChargeAttempt()
public string UserFailureMessage { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ChargeBankTransaction.cs b/src/Wallee/Model/ChargeBankTransaction.cs
index 0e96de8..609bb9f 100644
--- a/src/Wallee/Model/ChargeBankTransaction.cs
+++ b/src/Wallee/Model/ChargeBankTransaction.cs
@@ -44,8 +44,9 @@ public ChargeBankTransaction()
public long? Completion { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -75,9 +76,9 @@ public ChargeBankTransaction()
public decimal? TransactionCurrencyValueAmount { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ChargeFlow.cs b/src/Wallee/Model/ChargeFlow.cs
index 9f28651..d8b7eb5 100644
--- a/src/Wallee/Model/ChargeFlow.cs
+++ b/src/Wallee/Model/ChargeFlow.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class ChargeFlow : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -41,16 +42,16 @@ public ChargeFlow()
public List Conditions { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -62,9 +63,9 @@ public ChargeFlow()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -77,9 +78,9 @@ public ChargeFlow()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ChargeFlowLevel.cs b/src/Wallee/Model/ChargeFlowLevel.cs
index 38814b2..85ff2e5 100644
--- a/src/Wallee/Model/ChargeFlowLevel.cs
+++ b/src/Wallee/Model/ChargeFlowLevel.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class ChargeFlowLevel : TransactionAwareEntity, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ChargeFlowLevelState? State { get; private set; }
///
@@ -49,16 +50,16 @@ public ChargeFlowLevel()
public ChargeFlowLevelConfiguration Configuration { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -88,9 +89,9 @@ public ChargeFlowLevel()
public Transaction Transaction { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ChargeFlowLevelConfiguration.cs b/src/Wallee/Model/ChargeFlowLevelConfiguration.cs
index 3d8471f..76f5ddd 100644
--- a/src/Wallee/Model/ChargeFlowLevelConfiguration.cs
+++ b/src/Wallee/Model/ChargeFlowLevelConfiguration.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class ChargeFlowLevelConfiguration : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -41,16 +42,16 @@ public ChargeFlowLevelConfiguration()
public ChargeFlow Flow { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -69,9 +70,9 @@ public ChargeFlowLevelConfiguration()
public string Period { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -91,9 +92,9 @@ public ChargeFlowLevelConfiguration()
public long? Type { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ChargeFlowLevelConfigurationType.cs b/src/Wallee/Model/ChargeFlowLevelConfigurationType.cs
index 68c0f48..a09d030 100644
--- a/src/Wallee/Model/ChargeFlowLevelConfigurationType.cs
+++ b/src/Wallee/Model/ChargeFlowLevelConfigurationType.cs
@@ -29,15 +29,16 @@ public ChargeFlowLevelConfigurationType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -48,8 +49,9 @@ public ChargeFlowLevelConfigurationType()
public Dictionary Label { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/Condition.cs b/src/Wallee/Model/Condition.cs
index cb09d33..0e7b22b 100644
--- a/src/Wallee/Model/Condition.cs
+++ b/src/Wallee/Model/Condition.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class Condition : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -41,16 +42,16 @@ public Condition()
public long? ConditionType { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -62,17 +63,17 @@ public Condition()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ConditionType.cs b/src/Wallee/Model/ConditionType.cs
index 72166c9..a3bde40 100644
--- a/src/Wallee/Model/ConditionType.cs
+++ b/src/Wallee/Model/ConditionType.cs
@@ -29,21 +29,23 @@ public ConditionType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/ConnectorInvocation.cs b/src/Wallee/Model/ConnectorInvocation.cs
index 5a7be64..039e5f4 100644
--- a/src/Wallee/Model/ConnectorInvocation.cs
+++ b/src/Wallee/Model/ConnectorInvocation.cs
@@ -37,16 +37,16 @@ public ConnectorInvocation()
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -64,9 +64,9 @@ public ConnectorInvocation()
public long? Transaction { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/CurrencyBankAccount.cs b/src/Wallee/Model/CurrencyBankAccount.cs
index 5d7fe7b..7a807c3 100644
--- a/src/Wallee/Model/CurrencyBankAccount.cs
+++ b/src/Wallee/Model/CurrencyBankAccount.cs
@@ -47,23 +47,23 @@ public CurrencyBankAccount()
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/Customer.cs b/src/Wallee/Model/Customer.cs
index 3f43210..ca0909e 100644
--- a/src/Wallee/Model/Customer.cs
+++ b/src/Wallee/Model/Customer.cs
@@ -29,9 +29,9 @@ public Customer()
}
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -60,22 +60,23 @@ public Customer()
public string GivenName { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -93,9 +94,9 @@ public Customer()
public string PreferredCurrency { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/CustomerAddress.cs b/src/Wallee/Model/CustomerAddress.cs
index d45af2d..e973e77 100644
--- a/src/Wallee/Model/CustomerAddress.cs
+++ b/src/Wallee/Model/CustomerAddress.cs
@@ -41,9 +41,9 @@ public CustomerAddress()
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -60,23 +60,23 @@ public CustomerAddress()
public bool? DefaultAddress { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/CustomerComment.cs b/src/Wallee/Model/CustomerComment.cs
index 6bfa91e..fc4deb0 100644
--- a/src/Wallee/Model/CustomerComment.cs
+++ b/src/Wallee/Model/CustomerComment.cs
@@ -41,9 +41,9 @@ public CustomerComment()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -67,16 +67,16 @@ public CustomerComment()
public DateTime? EditedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -87,9 +87,9 @@ public CustomerComment()
public bool? Pinned { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/DebtCollectionCase.cs b/src/Wallee/Model/DebtCollectionCase.cs
index f64b7f1..8e51117 100644
--- a/src/Wallee/Model/DebtCollectionCase.cs
+++ b/src/Wallee/Model/DebtCollectionCase.cs
@@ -27,8 +27,9 @@ public partial class DebtCollectionCase : IEquatable
[DataMember(Name="environment", EmitDefaultValue=false)]
public DebtCollectionEnvironment? Environment { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public DebtCollectionCaseState? State { get; private set; }
///
@@ -75,9 +76,9 @@ public DebtCollectionCase()
public DateTime? ContractDate { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -124,9 +125,9 @@ public DebtCollectionCase()
public FailureReason FailureReason { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -151,9 +152,9 @@ public DebtCollectionCase()
public List LineItems { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -164,9 +165,9 @@ public DebtCollectionCase()
public DateTime? NextAttemptOn { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -232,9 +233,9 @@ public DebtCollectionCase()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/DebtCollectionCaseDocument.cs b/src/Wallee/Model/DebtCollectionCaseDocument.cs
index 8ffdc36..a889791 100644
--- a/src/Wallee/Model/DebtCollectionCaseDocument.cs
+++ b/src/Wallee/Model/DebtCollectionCaseDocument.cs
@@ -29,9 +29,9 @@ public DebtCollectionCaseDocument()
}
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -48,9 +48,9 @@ public DebtCollectionCaseDocument()
public string FileName { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -61,9 +61,9 @@ public DebtCollectionCaseDocument()
public List Labels { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -74,9 +74,9 @@ public DebtCollectionCaseDocument()
public string MimeType { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -93,9 +93,9 @@ public DebtCollectionCaseDocument()
public string UniqueId { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/DebtCollectionCaseSource.cs b/src/Wallee/Model/DebtCollectionCaseSource.cs
index adf07ef..8333f28 100644
--- a/src/Wallee/Model/DebtCollectionCaseSource.cs
+++ b/src/Wallee/Model/DebtCollectionCaseSource.cs
@@ -29,8 +29,9 @@ public DebtCollectionCaseSource()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -41,15 +42,16 @@ public DebtCollectionCaseSource()
public bool? ForcedPreparingState { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/DebtCollectionReceipt.cs b/src/Wallee/Model/DebtCollectionReceipt.cs
index c3b2336..77c9067 100644
--- a/src/Wallee/Model/DebtCollectionReceipt.cs
+++ b/src/Wallee/Model/DebtCollectionReceipt.cs
@@ -42,9 +42,9 @@ public DebtCollectionReceipt()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -62,23 +62,23 @@ public DebtCollectionReceipt()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -89,9 +89,9 @@ public DebtCollectionReceipt()
public long? Source { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/DebtCollectionReceiptSource.cs b/src/Wallee/Model/DebtCollectionReceiptSource.cs
index b1bb093..c73bafa 100644
--- a/src/Wallee/Model/DebtCollectionReceiptSource.cs
+++ b/src/Wallee/Model/DebtCollectionReceiptSource.cs
@@ -29,21 +29,23 @@ public DebtCollectionReceiptSource()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/DebtCollector.cs b/src/Wallee/Model/DebtCollector.cs
index 669b33b..1b4304c 100644
--- a/src/Wallee/Model/DebtCollector.cs
+++ b/src/Wallee/Model/DebtCollector.cs
@@ -29,21 +29,23 @@ public DebtCollector()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/DebtCollectorCondition.cs b/src/Wallee/Model/DebtCollectorCondition.cs
index 4882474..6d9229d 100644
--- a/src/Wallee/Model/DebtCollectorCondition.cs
+++ b/src/Wallee/Model/DebtCollectorCondition.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class DebtCollectorCondition : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -34,16 +35,16 @@ public DebtCollectorCondition()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -55,9 +56,9 @@ public DebtCollectorCondition()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -70,9 +71,9 @@ public DebtCollectorCondition()
public long? Type { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/DebtCollectorConditionType.cs b/src/Wallee/Model/DebtCollectorConditionType.cs
index 48aed4c..0e92fbc 100644
--- a/src/Wallee/Model/DebtCollectorConditionType.cs
+++ b/src/Wallee/Model/DebtCollectorConditionType.cs
@@ -29,21 +29,23 @@ public DebtCollectorConditionType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/DebtCollectorConfiguration.cs b/src/Wallee/Model/DebtCollectorConfiguration.cs
index 3436fab..85c64fc 100644
--- a/src/Wallee/Model/DebtCollectorConfiguration.cs
+++ b/src/Wallee/Model/DebtCollectorConfiguration.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class DebtCollectorConfiguration : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -55,16 +56,16 @@ public DebtCollectorConfiguration()
public List EnabledSpaceViews { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -76,9 +77,9 @@ public DebtCollectorConfiguration()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -98,9 +99,9 @@ public DebtCollectorConfiguration()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/DeliveryIndication.cs b/src/Wallee/Model/DeliveryIndication.cs
index ec45c81..585ee2d 100644
--- a/src/Wallee/Model/DeliveryIndication.cs
+++ b/src/Wallee/Model/DeliveryIndication.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class DeliveryIndication : TransactionAwareEntity, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public DeliveryIndicationState? State { get; private set; }
///
@@ -55,9 +56,9 @@ public DeliveryIndication()
public long? Completion { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -80,9 +81,9 @@ public DeliveryIndication()
public DateTime? ManuallyDecidedOn { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
diff --git a/src/Wallee/Model/DeliveryIndicationDecisionReason.cs b/src/Wallee/Model/DeliveryIndicationDecisionReason.cs
index 3af42a7..d10a952 100644
--- a/src/Wallee/Model/DeliveryIndicationDecisionReason.cs
+++ b/src/Wallee/Model/DeliveryIndicationDecisionReason.cs
@@ -29,21 +29,23 @@ public DeliveryIndicationDecisionReason()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/DocumentTemplate.cs b/src/Wallee/Model/DocumentTemplate.cs
index 1aed069..7f48e52 100644
--- a/src/Wallee/Model/DocumentTemplate.cs
+++ b/src/Wallee/Model/DocumentTemplate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class DocumentTemplate : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -47,16 +48,16 @@ public DocumentTemplate()
public bool? DeliveryEnabled { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -67,9 +68,9 @@ public DocumentTemplate()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -93,9 +94,9 @@ public DocumentTemplate()
public long? Type { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/DocumentTemplateType.cs b/src/Wallee/Model/DocumentTemplateType.cs
index 71e604d..e4e12b2 100644
--- a/src/Wallee/Model/DocumentTemplateType.cs
+++ b/src/Wallee/Model/DocumentTemplateType.cs
@@ -47,9 +47,9 @@ public DocumentTemplateType()
public DocumentTemplateTypeGroup Group { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
diff --git a/src/Wallee/Model/DocumentTemplateTypeGroup.cs b/src/Wallee/Model/DocumentTemplateTypeGroup.cs
index 6b07edf..56297b4 100644
--- a/src/Wallee/Model/DocumentTemplateTypeGroup.cs
+++ b/src/Wallee/Model/DocumentTemplateTypeGroup.cs
@@ -29,9 +29,9 @@ public DocumentTemplateTypeGroup()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
diff --git a/src/Wallee/Model/ExternalTransferBankTransaction.cs b/src/Wallee/Model/ExternalTransferBankTransaction.cs
index 69c4bce..3f05e5a 100644
--- a/src/Wallee/Model/ExternalTransferBankTransaction.cs
+++ b/src/Wallee/Model/ExternalTransferBankTransaction.cs
@@ -53,23 +53,23 @@ public ExternalTransferBankTransaction()
public string ExternalBankName { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/FailureReason.cs b/src/Wallee/Model/FailureReason.cs
index 4baef06..6b771aa 100644
--- a/src/Wallee/Model/FailureReason.cs
+++ b/src/Wallee/Model/FailureReason.cs
@@ -35,8 +35,9 @@ public FailureReason()
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -47,15 +48,16 @@ public FailureReason()
public List Features { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/Feature.cs b/src/Wallee/Model/Feature.cs
index 232ff20..52ff65e 100644
--- a/src/Wallee/Model/Feature.cs
+++ b/src/Wallee/Model/Feature.cs
@@ -41,15 +41,16 @@ public Feature()
public FeatureCategory Category { get; private set; }
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -60,8 +61,9 @@ public Feature()
public string LogoPath { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/FeatureCategory.cs b/src/Wallee/Model/FeatureCategory.cs
index 348e319..d367179 100644
--- a/src/Wallee/Model/FeatureCategory.cs
+++ b/src/Wallee/Model/FeatureCategory.cs
@@ -29,21 +29,23 @@ public FeatureCategory()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/InstallmentPayment.cs b/src/Wallee/Model/InstallmentPayment.cs
index 06e5889..1ea2e45 100644
--- a/src/Wallee/Model/InstallmentPayment.cs
+++ b/src/Wallee/Model/InstallmentPayment.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class InstallmentPayment : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public InstallmentPaymentState? State { get; private set; }
///
@@ -34,16 +35,16 @@ public InstallmentPayment()
}
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -60,9 +61,9 @@ public InstallmentPayment()
public List LineItems { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -73,17 +74,17 @@ public InstallmentPayment()
public long? PlanConfiguration { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/InstallmentPaymentSlice.cs b/src/Wallee/Model/InstallmentPaymentSlice.cs
index 169e6a6..7d4196c 100644
--- a/src/Wallee/Model/InstallmentPaymentSlice.cs
+++ b/src/Wallee/Model/InstallmentPaymentSlice.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class InstallmentPaymentSlice : TransactionAwareEntity, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public InstallmentPaymentSliceState? State { get; private set; }
///
@@ -43,9 +44,9 @@ public InstallmentPaymentSlice()
public DateTime? ChargeOn { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -62,9 +63,9 @@ public InstallmentPaymentSlice()
public List LineItems { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -76,9 +77,9 @@ public InstallmentPaymentSlice()
public Transaction Transaction { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/InstallmentPlanConfiguration.cs b/src/Wallee/Model/InstallmentPlanConfiguration.cs
index 4aa38b9..9ee1534 100644
--- a/src/Wallee/Model/InstallmentPlanConfiguration.cs
+++ b/src/Wallee/Model/InstallmentPlanConfiguration.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class InstallmentPlanConfiguration : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -48,9 +49,9 @@ public InstallmentPlanConfiguration()
public List Conditions { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -69,9 +70,9 @@ public InstallmentPlanConfiguration()
public decimal? InterestRate { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -97,9 +98,9 @@ public InstallmentPlanConfiguration()
public List PaymentMethodConfigurations { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -139,9 +140,9 @@ public InstallmentPlanConfiguration()
public DatabaseTranslatedString Title { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/InstallmentPlanSliceConfiguration.cs b/src/Wallee/Model/InstallmentPlanSliceConfiguration.cs
index fcdc8f4..adb0f6e 100644
--- a/src/Wallee/Model/InstallmentPlanSliceConfiguration.cs
+++ b/src/Wallee/Model/InstallmentPlanSliceConfiguration.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class InstallmentPlanSliceConfiguration : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -34,9 +35,9 @@ public InstallmentPlanSliceConfiguration()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -48,9 +49,9 @@ public InstallmentPlanSliceConfiguration()
public DatabaseTranslatedString LineItemTitle { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -69,9 +70,9 @@ public InstallmentPlanSliceConfiguration()
public InstallmentPlanConfiguration Plan { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -91,9 +92,9 @@ public InstallmentPlanSliceConfiguration()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/InternalTransferBankTransaction.cs b/src/Wallee/Model/InternalTransferBankTransaction.cs
index f4f2272..d73e0d6 100644
--- a/src/Wallee/Model/InternalTransferBankTransaction.cs
+++ b/src/Wallee/Model/InternalTransferBankTransaction.cs
@@ -29,16 +29,16 @@ public InternalTransferBankTransaction()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -55,9 +55,9 @@ public InternalTransferBankTransaction()
public BankTransaction TargetBankTransaction { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/InvoiceReconciliationRecord.cs b/src/Wallee/Model/InvoiceReconciliationRecord.cs
index 5f0fb7f..0cf6884 100644
--- a/src/Wallee/Model/InvoiceReconciliationRecord.cs
+++ b/src/Wallee/Model/InvoiceReconciliationRecord.cs
@@ -31,8 +31,9 @@ public partial class InvoiceReconciliationRecord : TransactionAwareEntity, IEqu
[DataMember(Name="rejectionStatus", EmitDefaultValue=false)]
public InvoiceReconciliationRecordRejectionStatus? RejectionStatus { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public InvoiceReconciliationRecordState? State { get; private set; }
///
@@ -71,9 +72,9 @@ public InvoiceReconciliationRecord()
public string Country { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -146,9 +147,9 @@ public InvoiceReconciliationRecord()
public string PaymentReason { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -210,9 +211,9 @@ public InvoiceReconciliationRecord()
public DateTime? ValueDate { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/InvoiceReconciliationRecordInvoiceLink.cs b/src/Wallee/Model/InvoiceReconciliationRecordInvoiceLink.cs
index 5ffd4a1..e35dd81 100644
--- a/src/Wallee/Model/InvoiceReconciliationRecordInvoiceLink.cs
+++ b/src/Wallee/Model/InvoiceReconciliationRecordInvoiceLink.cs
@@ -35,16 +35,16 @@ public InvoiceReconciliationRecordInvoiceLink()
public decimal? Amount { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -55,9 +55,9 @@ public InvoiceReconciliationRecordInvoiceLink()
public TransactionInvoice Invoice { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
diff --git a/src/Wallee/Model/InvoiceReconciliationRecordType.cs b/src/Wallee/Model/InvoiceReconciliationRecordType.cs
index dfcc49a..5f2b6d6 100644
--- a/src/Wallee/Model/InvoiceReconciliationRecordType.cs
+++ b/src/Wallee/Model/InvoiceReconciliationRecordType.cs
@@ -29,21 +29,23 @@ public InvoiceReconciliationRecordType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/InvoiceReimbursement.cs b/src/Wallee/Model/InvoiceReimbursement.cs
index e57558c..7b27d4f 100644
--- a/src/Wallee/Model/InvoiceReimbursement.cs
+++ b/src/Wallee/Model/InvoiceReimbursement.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class InvoiceReimbursement : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public InvoiceReimbursementState? State { get; private set; }
///
@@ -40,9 +41,9 @@ public InvoiceReimbursement()
public decimal? Amount { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -65,16 +66,16 @@ public InvoiceReimbursement()
public DateTime? DiscardedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -152,9 +153,9 @@ public InvoiceReimbursement()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/Label.cs b/src/Wallee/Model/Label.cs
index e2ed4e6..c066f95 100644
--- a/src/Wallee/Model/Label.cs
+++ b/src/Wallee/Model/Label.cs
@@ -47,16 +47,16 @@ public Label()
public LabelDescriptor Descriptor { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/LabelDescriptor.cs b/src/Wallee/Model/LabelDescriptor.cs
index aa340de..fe92820 100644
--- a/src/Wallee/Model/LabelDescriptor.cs
+++ b/src/Wallee/Model/LabelDescriptor.cs
@@ -35,8 +35,9 @@ public LabelDescriptor()
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -53,15 +54,16 @@ public LabelDescriptor()
public long? Group { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/LabelDescriptorGroup.cs b/src/Wallee/Model/LabelDescriptorGroup.cs
index 521bddd..561dd19 100644
--- a/src/Wallee/Model/LabelDescriptorGroup.cs
+++ b/src/Wallee/Model/LabelDescriptorGroup.cs
@@ -29,21 +29,23 @@ public LabelDescriptorGroup()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/LabelDescriptorType.cs b/src/Wallee/Model/LabelDescriptorType.cs
index 3f1a104..143c05f 100644
--- a/src/Wallee/Model/LabelDescriptorType.cs
+++ b/src/Wallee/Model/LabelDescriptorType.cs
@@ -29,21 +29,23 @@ public LabelDescriptorType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/LegalOrganizationForm.cs b/src/Wallee/Model/LegalOrganizationForm.cs
index 2195ac7..f1e7778 100644
--- a/src/Wallee/Model/LegalOrganizationForm.cs
+++ b/src/Wallee/Model/LegalOrganizationForm.cs
@@ -47,9 +47,9 @@ public LegalOrganizationForm()
public string EnglishDescription { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
diff --git a/src/Wallee/Model/ManualTask.cs b/src/Wallee/Model/ManualTask.cs
index 60c3fc7..4a83e7e 100644
--- a/src/Wallee/Model/ManualTask.cs
+++ b/src/Wallee/Model/ManualTask.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class ManualTask : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ManualTaskState? State { get; private set; }
///
@@ -47,9 +48,9 @@ public ManualTask()
public long? ContextEntityId { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -61,23 +62,23 @@ public ManualTask()
public DateTime? ExpiresOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
diff --git a/src/Wallee/Model/ManualTaskAction.cs b/src/Wallee/Model/ManualTaskAction.cs
index 093c2d1..eb35ba4 100644
--- a/src/Wallee/Model/ManualTaskAction.cs
+++ b/src/Wallee/Model/ManualTaskAction.cs
@@ -34,9 +34,9 @@ public ManualTaskAction()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
diff --git a/src/Wallee/Model/ManualTaskType.cs b/src/Wallee/Model/ManualTaskType.cs
index e47de55..160e368 100644
--- a/src/Wallee/Model/ManualTaskType.cs
+++ b/src/Wallee/Model/ManualTaskType.cs
@@ -29,8 +29,9 @@ public ManualTaskType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -41,15 +42,16 @@ public ManualTaskType()
public List Features { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/PaymentAdjustmentType.cs b/src/Wallee/Model/PaymentAdjustmentType.cs
index 52da2d1..ad0fcb9 100644
--- a/src/Wallee/Model/PaymentAdjustmentType.cs
+++ b/src/Wallee/Model/PaymentAdjustmentType.cs
@@ -29,21 +29,23 @@ public PaymentAdjustmentType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/PaymentAppConnector.cs b/src/Wallee/Model/PaymentAppConnector.cs
index 1866295..c8ed27d 100644
--- a/src/Wallee/Model/PaymentAppConnector.cs
+++ b/src/Wallee/Model/PaymentAppConnector.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentAppConnector : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public PaymentAppConnectorState? State { get; private set; }
///
@@ -68,16 +69,16 @@ public PaymentAppConnector()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -118,9 +119,9 @@ public PaymentAppConnector()
public DateTime? UpdatedOn { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentAppProcessor.cs b/src/Wallee/Model/PaymentAppProcessor.cs
index a25d6d2..353c06f 100644
--- a/src/Wallee/Model/PaymentAppProcessor.cs
+++ b/src/Wallee/Model/PaymentAppProcessor.cs
@@ -26,8 +26,9 @@ public partial class PaymentAppProcessor : IEquatable
[DataMember(Name="configuredEnvironment", EmitDefaultValue=false)]
public ChargeAttemptEnvironment? ConfiguredEnvironment { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public PaymentAppProcessorState? State { get; private set; }
///
@@ -61,9 +62,9 @@ public PaymentAppProcessor()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -75,9 +76,9 @@ public PaymentAppProcessor()
public long? InstallationId { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -130,9 +131,9 @@ public PaymentAppProcessor()
public DateTime? UsableInProductionSince { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentConnector.cs b/src/Wallee/Model/PaymentConnector.cs
index 9186fc2..c17aa66 100644
--- a/src/Wallee/Model/PaymentConnector.cs
+++ b/src/Wallee/Model/PaymentConnector.cs
@@ -52,8 +52,9 @@ public PaymentConnector()
public Dictionary DeprecationReason { get; private set; }
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -64,15 +65,16 @@ public PaymentConnector()
public Feature Feature { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/PaymentConnectorConfiguration.cs b/src/Wallee/Model/PaymentConnectorConfiguration.cs
index 04298e5..0d623a1 100644
--- a/src/Wallee/Model/PaymentConnectorConfiguration.cs
+++ b/src/Wallee/Model/PaymentConnectorConfiguration.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentConnectorConfiguration : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -68,16 +69,16 @@ public PaymentConnectorConfiguration()
public List EnabledSpaceViews { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -95,9 +96,9 @@ public PaymentConnectorConfiguration()
public PaymentMethodConfiguration PaymentMethodConfiguration { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -116,9 +117,9 @@ public PaymentConnectorConfiguration()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentConnectorFeature.cs b/src/Wallee/Model/PaymentConnectorFeature.cs
index 63d2ed8..16739df 100644
--- a/src/Wallee/Model/PaymentConnectorFeature.cs
+++ b/src/Wallee/Model/PaymentConnectorFeature.cs
@@ -41,9 +41,9 @@ public PaymentConnectorFeature()
public Feature Feature { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
diff --git a/src/Wallee/Model/PaymentContract.cs b/src/Wallee/Model/PaymentContract.cs
index 7992d66..bedaae8 100644
--- a/src/Wallee/Model/PaymentContract.cs
+++ b/src/Wallee/Model/PaymentContract.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentContract : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public PaymentContractState? State { get; private set; }
///
@@ -64,9 +65,9 @@ public PaymentContract()
public User CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -78,9 +79,9 @@ public PaymentContract()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -116,9 +117,9 @@ public PaymentContract()
public DateTime? TerminatedOn { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentContractType.cs b/src/Wallee/Model/PaymentContractType.cs
index f89dd62..e70b64f 100644
--- a/src/Wallee/Model/PaymentContractType.cs
+++ b/src/Wallee/Model/PaymentContractType.cs
@@ -29,8 +29,9 @@ public PaymentContractType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -41,15 +42,16 @@ public PaymentContractType()
public Feature Feature { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/PaymentInformationHash.cs b/src/Wallee/Model/PaymentInformationHash.cs
index 47b77fe..4229525 100644
--- a/src/Wallee/Model/PaymentInformationHash.cs
+++ b/src/Wallee/Model/PaymentInformationHash.cs
@@ -29,9 +29,9 @@ public PaymentInformationHash()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
diff --git a/src/Wallee/Model/PaymentInformationHashType.cs b/src/Wallee/Model/PaymentInformationHashType.cs
index e762a13..92e08ee 100644
--- a/src/Wallee/Model/PaymentInformationHashType.cs
+++ b/src/Wallee/Model/PaymentInformationHashType.cs
@@ -29,9 +29,9 @@ public PaymentInformationHashType()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
diff --git a/src/Wallee/Model/PaymentInitiationAdviceFile.cs b/src/Wallee/Model/PaymentInitiationAdviceFile.cs
index 941deee..3422b82 100644
--- a/src/Wallee/Model/PaymentInitiationAdviceFile.cs
+++ b/src/Wallee/Model/PaymentInitiationAdviceFile.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentInitiationAdviceFile : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public PaymentInitiationAdviceFileState? State { get; private set; }
///
@@ -60,16 +61,16 @@ public PaymentInitiationAdviceFile()
public DateTime? ForwardedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
diff --git a/src/Wallee/Model/PaymentLink.cs b/src/Wallee/Model/PaymentLink.cs
index b553c2a..333951e 100644
--- a/src/Wallee/Model/PaymentLink.cs
+++ b/src/Wallee/Model/PaymentLink.cs
@@ -39,8 +39,9 @@ public partial class PaymentLink : IEquatable
[DataMember(Name="shippingAddressHandlingMode", EmitDefaultValue=false)]
public PaymentLinkAddressHandlingMode? ShippingAddressHandlingMode { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -95,9 +96,9 @@ public PaymentLink()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -116,9 +117,9 @@ public PaymentLink()
public List LineItems { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -137,9 +138,9 @@ public PaymentLink()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -154,9 +155,9 @@ public PaymentLink()
public string Url { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentLinkActive.cs b/src/Wallee/Model/PaymentLinkActive.cs
index 20bf005..8a7d741 100644
--- a/src/Wallee/Model/PaymentLinkActive.cs
+++ b/src/Wallee/Model/PaymentLinkActive.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentLinkActive : PaymentLinkUpdate, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
diff --git a/src/Wallee/Model/PaymentLinkCreate.cs b/src/Wallee/Model/PaymentLinkCreate.cs
index f45d69e..212d5b7 100644
--- a/src/Wallee/Model/PaymentLinkCreate.cs
+++ b/src/Wallee/Model/PaymentLinkCreate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentLinkCreate : AbstractPaymentLinkUpdate, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
diff --git a/src/Wallee/Model/PaymentMethod.cs b/src/Wallee/Model/PaymentMethod.cs
index bed3e84..bef38b4 100644
--- a/src/Wallee/Model/PaymentMethod.cs
+++ b/src/Wallee/Model/PaymentMethod.cs
@@ -35,15 +35,16 @@ public PaymentMethod()
public List DataCollectionTypes { get; private set; }
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -60,8 +61,9 @@ public PaymentMethod()
public Dictionary MerchantDescription { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/PaymentMethodBrand.cs b/src/Wallee/Model/PaymentMethodBrand.cs
index 5cc6566..30ffd5d 100644
--- a/src/Wallee/Model/PaymentMethodBrand.cs
+++ b/src/Wallee/Model/PaymentMethodBrand.cs
@@ -29,8 +29,9 @@ public PaymentMethodBrand()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -41,9 +42,9 @@ public PaymentMethodBrand()
public string GrayImagePath { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -54,8 +55,9 @@ public PaymentMethodBrand()
public string ImagePath { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/PaymentMethodConfiguration.cs b/src/Wallee/Model/PaymentMethodConfiguration.cs
index 1e3c565..956f85a 100644
--- a/src/Wallee/Model/PaymentMethodConfiguration.cs
+++ b/src/Wallee/Model/PaymentMethodConfiguration.cs
@@ -33,8 +33,9 @@ public partial class PaymentMethodConfiguration : IEquatable
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -54,9 +55,9 @@ public PaymentMethodConfiguration()
public DatabaseTranslatedString Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -68,9 +69,9 @@ public PaymentMethodConfiguration()
public ResourcePath ImageResourcePath { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -89,9 +90,9 @@ public PaymentMethodConfiguration()
public long? PaymentMethod { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -138,9 +139,9 @@ public PaymentMethodConfiguration()
public DatabaseTranslatedString Title { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentProcessor.cs b/src/Wallee/Model/PaymentProcessor.cs
index ec19e25..92918c9 100644
--- a/src/Wallee/Model/PaymentProcessor.cs
+++ b/src/Wallee/Model/PaymentProcessor.cs
@@ -35,8 +35,9 @@ public PaymentProcessor()
public Dictionary CompanyName { get; private set; }
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -53,9 +54,9 @@ public PaymentProcessor()
public Dictionary HeadquartersLocation { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -66,8 +67,9 @@ public PaymentProcessor()
public string LogoPath { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/PaymentProcessorConfiguration.cs b/src/Wallee/Model/PaymentProcessorConfiguration.cs
index 1c5930a..c3f1913 100644
--- a/src/Wallee/Model/PaymentProcessorConfiguration.cs
+++ b/src/Wallee/Model/PaymentProcessorConfiguration.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentProcessorConfiguration : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -48,16 +49,16 @@ public PaymentProcessorConfiguration()
public long? ContractId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -69,9 +70,9 @@ public PaymentProcessorConfiguration()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -84,9 +85,9 @@ public PaymentProcessorConfiguration()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentTerminal.cs b/src/Wallee/Model/PaymentTerminal.cs
index caab1e5..e2ef8f4 100644
--- a/src/Wallee/Model/PaymentTerminal.cs
+++ b/src/Wallee/Model/PaymentTerminal.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentTerminal : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public PaymentTerminalState? State { get; private set; }
///
@@ -53,9 +54,9 @@ public PaymentTerminal()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -67,9 +68,9 @@ public PaymentTerminal()
public string Identifier { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -87,9 +88,9 @@ public PaymentTerminal()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -101,9 +102,9 @@ public PaymentTerminal()
public PaymentTerminalType Type { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentTerminalConfiguration.cs b/src/Wallee/Model/PaymentTerminalConfiguration.cs
index 9a015ff..645827a 100644
--- a/src/Wallee/Model/PaymentTerminalConfiguration.cs
+++ b/src/Wallee/Model/PaymentTerminalConfiguration.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentTerminalConfiguration : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public PaymentTerminalConfigurationState? State { get; private set; }
///
@@ -34,16 +35,16 @@ public PaymentTerminalConfiguration()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -55,9 +56,9 @@ public PaymentTerminalConfiguration()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -69,9 +70,9 @@ public PaymentTerminalConfiguration()
public PaymentTerminalType Type { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentTerminalConfigurationVersion.cs b/src/Wallee/Model/PaymentTerminalConfigurationVersion.cs
index 07b5e91..54f051e 100644
--- a/src/Wallee/Model/PaymentTerminalConfigurationVersion.cs
+++ b/src/Wallee/Model/PaymentTerminalConfigurationVersion.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentTerminalConfigurationVersion : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public PaymentTerminalConfigurationVersionState? State { get; private set; }
///
@@ -52,9 +53,9 @@ public PaymentTerminalConfigurationVersion()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -66,16 +67,16 @@ public PaymentTerminalConfigurationVersion()
public string DefaultCurrency { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -92,9 +93,9 @@ public PaymentTerminalConfigurationVersion()
public string MaintenanceWindowStart { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -106,9 +107,9 @@ public PaymentTerminalConfigurationVersion()
public string TimeZone { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentTerminalConfigurationVersionState.cs b/src/Wallee/Model/PaymentTerminalConfigurationVersionState.cs
index 65b1206..0f07670 100644
--- a/src/Wallee/Model/PaymentTerminalConfigurationVersionState.cs
+++ b/src/Wallee/Model/PaymentTerminalConfigurationVersionState.cs
@@ -41,12 +41,6 @@ public enum PaymentTerminalConfigurationVersionState
[EnumMember(Value = "ACTIVE")]
ACTIVE,
- ///
- /// Enum OBSOLETE for value: OBSOLETE
- ///
- [EnumMember(Value = "OBSOLETE")]
- OBSOLETE,
-
///
/// Enum DELETING for value: DELETING
///
diff --git a/src/Wallee/Model/PaymentTerminalDccTransactionSum.cs b/src/Wallee/Model/PaymentTerminalDccTransactionSum.cs
index d1fd4d5..6a19427 100644
--- a/src/Wallee/Model/PaymentTerminalDccTransactionSum.cs
+++ b/src/Wallee/Model/PaymentTerminalDccTransactionSum.cs
@@ -47,9 +47,9 @@ public PaymentTerminalDccTransactionSum()
public string DccCurrency { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -72,9 +72,9 @@ public PaymentTerminalDccTransactionSum()
public string TransactionCurrency { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentTerminalLocation.cs b/src/Wallee/Model/PaymentTerminalLocation.cs
index c05e9f9..beec5c4 100644
--- a/src/Wallee/Model/PaymentTerminalLocation.cs
+++ b/src/Wallee/Model/PaymentTerminalLocation.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentTerminalLocation : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public PaymentTerminalLocationState? State { get; private set; }
///
@@ -41,16 +42,16 @@ public PaymentTerminalLocation()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -62,17 +63,17 @@ public PaymentTerminalLocation()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentTerminalLocationVersion.cs b/src/Wallee/Model/PaymentTerminalLocationVersion.cs
index 47bf22c..89c3574 100644
--- a/src/Wallee/Model/PaymentTerminalLocationVersion.cs
+++ b/src/Wallee/Model/PaymentTerminalLocationVersion.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class PaymentTerminalLocationVersion : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public PaymentTerminalLocationVersionState? State { get; private set; }
///
@@ -52,23 +53,23 @@ public PaymentTerminalLocationVersion()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -79,17 +80,17 @@ public PaymentTerminalLocationVersion()
public PaymentTerminalLocation Location { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentTerminalReceiptType.cs b/src/Wallee/Model/PaymentTerminalReceiptType.cs
index 7799a8f..4b565e0 100644
--- a/src/Wallee/Model/PaymentTerminalReceiptType.cs
+++ b/src/Wallee/Model/PaymentTerminalReceiptType.cs
@@ -29,21 +29,23 @@ public PaymentTerminalReceiptType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/PaymentTerminalTransactionSum.cs b/src/Wallee/Model/PaymentTerminalTransactionSum.cs
index fa2d102..0f4872c 100644
--- a/src/Wallee/Model/PaymentTerminalTransactionSum.cs
+++ b/src/Wallee/Model/PaymentTerminalTransactionSum.cs
@@ -53,9 +53,9 @@ public PaymentTerminalTransactionSum()
public int? DccTransactionCount { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -90,9 +90,9 @@ public PaymentTerminalTransactionSum()
public decimal? TransactionTipAmount { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentTerminalTransactionSummary.cs b/src/Wallee/Model/PaymentTerminalTransactionSummary.cs
index 984c0b0..3d3d1d9 100644
--- a/src/Wallee/Model/PaymentTerminalTransactionSummary.cs
+++ b/src/Wallee/Model/PaymentTerminalTransactionSummary.cs
@@ -41,16 +41,16 @@ public PaymentTerminalTransactionSummary()
public DateTime? EndedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -85,9 +85,9 @@ public PaymentTerminalTransactionSummary()
public List TransactionSums { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/PaymentTerminalType.cs b/src/Wallee/Model/PaymentTerminalType.cs
index 19d23ca..2327b40 100644
--- a/src/Wallee/Model/PaymentTerminalType.cs
+++ b/src/Wallee/Model/PaymentTerminalType.cs
@@ -29,21 +29,23 @@ public PaymentTerminalType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/Permission.cs b/src/Wallee/Model/Permission.cs
index 1743e34..a1f19d9 100644
--- a/src/Wallee/Model/Permission.cs
+++ b/src/Wallee/Model/Permission.cs
@@ -29,8 +29,9 @@ public Permission()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -47,9 +48,9 @@ public Permission()
public bool? Group { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -60,8 +61,9 @@ public Permission()
public bool? Leaf { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/ProductMeteredFee.cs b/src/Wallee/Model/ProductMeteredFee.cs
index 9fc0616..411a225 100644
--- a/src/Wallee/Model/ProductMeteredFee.cs
+++ b/src/Wallee/Model/ProductMeteredFee.cs
@@ -53,16 +53,16 @@ public ProductMeteredFee()
public DatabaseTranslatedString Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -82,9 +82,9 @@ public ProductMeteredFee()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ProductMeteredTierFee.cs b/src/Wallee/Model/ProductMeteredTierFee.cs
index ce5d57b..d0e26ba 100644
--- a/src/Wallee/Model/ProductMeteredTierFee.cs
+++ b/src/Wallee/Model/ProductMeteredTierFee.cs
@@ -36,9 +36,9 @@ public ProductMeteredTierFee()
public List Fee { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -56,9 +56,9 @@ public ProductMeteredTierFee()
public decimal? StartRange { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ProductPeriodFee.cs b/src/Wallee/Model/ProductPeriodFee.cs
index 7020a9f..c389c5f 100644
--- a/src/Wallee/Model/ProductPeriodFee.cs
+++ b/src/Wallee/Model/ProductPeriodFee.cs
@@ -47,9 +47,9 @@ public ProductPeriodFee()
public DatabaseTranslatedString Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -61,9 +61,9 @@ public ProductPeriodFee()
public DatabaseTranslatedString LedgerEntryTitle { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -90,9 +90,9 @@ public ProductPeriodFee()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ProductSetupFee.cs b/src/Wallee/Model/ProductSetupFee.cs
index aa4244e..cdc5095 100644
--- a/src/Wallee/Model/ProductSetupFee.cs
+++ b/src/Wallee/Model/ProductSetupFee.cs
@@ -47,16 +47,16 @@ public ProductSetupFee()
public DatabaseTranslatedString Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -90,9 +90,9 @@ public ProductSetupFee()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/Refund.cs b/src/Wallee/Model/Refund.cs
index 902dd76..962fc24 100644
--- a/src/Wallee/Model/Refund.cs
+++ b/src/Wallee/Model/Refund.cs
@@ -26,8 +26,9 @@ public partial class Refund : IEquatable
[DataMember(Name="environment", EmitDefaultValue=false)]
public Environment? Environment { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public RefundState? State { get; private set; }
///
@@ -68,9 +69,9 @@ public Refund()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -95,9 +96,9 @@ public Refund()
public FailureReason FailureReason { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -108,8 +109,9 @@ public Refund()
public List Labels { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -120,9 +122,9 @@ public Refund()
public List LineItems { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -139,9 +141,9 @@ public Refund()
public DateTime? NextUpdateOn { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -222,9 +224,9 @@ public Refund()
public long? UpdatedInvoice { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/RefundBankTransaction.cs b/src/Wallee/Model/RefundBankTransaction.cs
index 245920a..9cf44fb 100644
--- a/src/Wallee/Model/RefundBankTransaction.cs
+++ b/src/Wallee/Model/RefundBankTransaction.cs
@@ -38,8 +38,9 @@ public RefundBankTransaction()
public BankTransaction BankTransaction { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -69,9 +70,9 @@ public RefundBankTransaction()
public long? SpaceViewId { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/RefundComment.cs b/src/Wallee/Model/RefundComment.cs
index a44e9cd..5aea422 100644
--- a/src/Wallee/Model/RefundComment.cs
+++ b/src/Wallee/Model/RefundComment.cs
@@ -41,9 +41,9 @@ public RefundComment()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -61,16 +61,16 @@ public RefundComment()
public DateTime? EditedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -87,9 +87,9 @@ public RefundComment()
public long? Refund { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/RefundRecoveryBankTransaction.cs b/src/Wallee/Model/RefundRecoveryBankTransaction.cs
index dca903b..76d8bfd 100644
--- a/src/Wallee/Model/RefundRecoveryBankTransaction.cs
+++ b/src/Wallee/Model/RefundRecoveryBankTransaction.cs
@@ -38,8 +38,9 @@ public RefundRecoveryBankTransaction()
public BankTransaction BankTransaction { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -76,9 +77,9 @@ public RefundRecoveryBankTransaction()
public long? SpaceViewId { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ResourcePath.cs b/src/Wallee/Model/ResourcePath.cs
index 8d8557a..c337bc2 100644
--- a/src/Wallee/Model/ResourcePath.cs
+++ b/src/Wallee/Model/ResourcePath.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class ResourcePath : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ResourceState? State { get; private set; }
///
@@ -34,16 +35,16 @@ public ResourcePath()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -54,9 +55,9 @@ public ResourcePath()
public string Path { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -68,9 +69,9 @@ public ResourcePath()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/Role.cs b/src/Wallee/Model/Role.cs
index d81b97d..c8076b5 100644
--- a/src/Wallee/Model/Role.cs
+++ b/src/Wallee/Model/Role.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class Role : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public RoleState? State { get; private set; }
///
@@ -41,9 +42,9 @@ public Role()
public Account Account { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -62,9 +63,9 @@ public Role()
public List Permissions { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -77,9 +78,9 @@ public Role()
public bool? TwoFactorRequired { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SalesChannel.cs b/src/Wallee/Model/SalesChannel.cs
index ac19572..8283120 100644
--- a/src/Wallee/Model/SalesChannel.cs
+++ b/src/Wallee/Model/SalesChannel.cs
@@ -29,8 +29,9 @@ public SalesChannel()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -41,15 +42,16 @@ public SalesChannel()
public string Icon { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/Scope.cs b/src/Wallee/Model/Scope.cs
index a4a3ebc..f801883 100644
--- a/src/Wallee/Model/Scope.cs
+++ b/src/Wallee/Model/Scope.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class Scope : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -47,9 +48,9 @@ public Scope()
public List Features { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -67,9 +68,9 @@ public Scope()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -102,9 +103,9 @@ public Scope()
public string Url { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ShopifyIntegration.cs b/src/Wallee/Model/ShopifyIntegration.cs
index b3fa857..c4e78bf 100644
--- a/src/Wallee/Model/ShopifyIntegration.cs
+++ b/src/Wallee/Model/ShopifyIntegration.cs
@@ -26,8 +26,9 @@ public partial class ShopifyIntegration : IEquatable
[DataMember(Name="paymentAppVersion", EmitDefaultValue=false)]
public ShopifyIntegrationPaymentAppVersion? PaymentAppVersion { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -68,9 +69,9 @@ public ShopifyIntegration()
public string Currency { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -117,9 +118,9 @@ public ShopifyIntegration()
public string PaymentProxyPath { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -176,9 +177,9 @@ public ShopifyIntegration()
public string SubscriptionProxyPath { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ShopifyRecurringOrder.cs b/src/Wallee/Model/ShopifyRecurringOrder.cs
index 15a29e3..3257940 100644
--- a/src/Wallee/Model/ShopifyRecurringOrder.cs
+++ b/src/Wallee/Model/ShopifyRecurringOrder.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class ShopifyRecurringOrder : TransactionAwareEntity, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ShopifyRecurringOrderState? State { get; private set; }
///
@@ -79,9 +80,9 @@ public ShopifyRecurringOrder()
public DateTime? PlannedExecutionDate { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
diff --git a/src/Wallee/Model/ShopifySubscriber.cs b/src/Wallee/Model/ShopifySubscriber.cs
index ac3685c..3be5d2e 100644
--- a/src/Wallee/Model/ShopifySubscriber.cs
+++ b/src/Wallee/Model/ShopifySubscriber.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class ShopifySubscriber : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ShopifySubscriberState? State { get; private set; }
///
@@ -53,16 +54,16 @@ public ShopifySubscriber()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -73,9 +74,9 @@ public ShopifySubscriber()
public string PhoneNumber { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -87,9 +88,9 @@ public ShopifySubscriber()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ShopifySubscription.cs b/src/Wallee/Model/ShopifySubscription.cs
index 6c5a304..fd53386 100644
--- a/src/Wallee/Model/ShopifySubscription.cs
+++ b/src/Wallee/Model/ShopifySubscription.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class ShopifySubscription : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ShopifySubscriptionState? State { get; private set; }
///
@@ -53,9 +54,9 @@ public ShopifySubscription()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -78,15 +79,16 @@ public ShopifySubscription()
public long? InitialShopifyTransaction { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -128,9 +130,9 @@ public ShopifySubscription()
public DateTime? TerminationRequestDate { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ShopifySubscriptionProduct.cs b/src/Wallee/Model/ShopifySubscriptionProduct.cs
index 1308602..9192f97 100644
--- a/src/Wallee/Model/ShopifySubscriptionProduct.cs
+++ b/src/Wallee/Model/ShopifySubscriptionProduct.cs
@@ -38,8 +38,9 @@ public partial class ShopifySubscriptionProduct : IEquatable
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ShopifySubscriptionProductState? State { get; private set; }
///
@@ -78,16 +79,16 @@ public ShopifySubscriptionProduct()
public decimal? FixedPrice { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -113,9 +114,9 @@ public ShopifySubscriptionProduct()
public int? MinimalBillingCycles { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -210,9 +211,9 @@ public ShopifySubscriptionProduct()
public DateTime? UpdatedAt { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ShopifySubscriptionSuspension.cs b/src/Wallee/Model/ShopifySubscriptionSuspension.cs
index d54afcd..acd53a3 100644
--- a/src/Wallee/Model/ShopifySubscriptionSuspension.cs
+++ b/src/Wallee/Model/ShopifySubscriptionSuspension.cs
@@ -26,8 +26,9 @@ public partial class ShopifySubscriptionSuspension : IEquatable
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ShopifySubscriptionSuspensionState? State { get; private set; }
///
@@ -68,17 +69,17 @@ public ShopifySubscriptionSuspension()
public DateTime? EndedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -103,9 +104,9 @@ public ShopifySubscriptionSuspension()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ShopifySubscriptionVersion.cs b/src/Wallee/Model/ShopifySubscriptionVersion.cs
index 50518e9..f0e903d 100644
--- a/src/Wallee/Model/ShopifySubscriptionVersion.cs
+++ b/src/Wallee/Model/ShopifySubscriptionVersion.cs
@@ -31,8 +31,9 @@ public partial class ShopifySubscriptionVersion : IEquatable
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public ShopifySubscriptionVersionState? State { get; private set; }
///
@@ -100,9 +101,9 @@ public ShopifySubscriptionVersion()
public DateTime? DischargedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -113,9 +114,9 @@ public ShopifySubscriptionVersion()
public List Items { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -193,9 +194,9 @@ public ShopifySubscriptionVersion()
public long? Token { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ShopifyTaxLine.cs b/src/Wallee/Model/ShopifyTaxLine.cs
index 9602a57..d4381a1 100644
--- a/src/Wallee/Model/ShopifyTaxLine.cs
+++ b/src/Wallee/Model/ShopifyTaxLine.cs
@@ -35,9 +35,9 @@ public ShopifyTaxLine()
public decimal? FractionRate { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -54,9 +54,9 @@ public ShopifyTaxLine()
public string Title { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/ShopifyTransaction.cs b/src/Wallee/Model/ShopifyTransaction.cs
index feb3820..ee331e8 100644
--- a/src/Wallee/Model/ShopifyTransaction.cs
+++ b/src/Wallee/Model/ShopifyTransaction.cs
@@ -43,9 +43,9 @@ public ShopifyTransaction()
public string CheckoutId { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -68,9 +68,9 @@ public ShopifyTransaction()
public string OrderName { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -82,9 +82,9 @@ public ShopifyTransaction()
public Transaction Transaction { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/Space.cs b/src/Wallee/Model/Space.cs
index 593befb..e7a0756 100644
--- a/src/Wallee/Model/Space.cs
+++ b/src/Wallee/Model/Space.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class Space : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -90,15 +91,16 @@ public Space()
public DateTime? DeletedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets LastModifiedDate
+ /// The date and time when the object was last modified.
///
+ /// The date and time when the object was last modified.
[DataMember(Name="lastModifiedDate", EmitDefaultValue=false)]
public DateTime? LastModifiedDate { get; private set; }
@@ -110,9 +112,9 @@ public Space()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -160,9 +162,9 @@ public Space()
public string TimeZone { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SpaceReference.cs b/src/Wallee/Model/SpaceReference.cs
index 6b84b81..bad4dc2 100644
--- a/src/Wallee/Model/SpaceReference.cs
+++ b/src/Wallee/Model/SpaceReference.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SpaceReference : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SpaceReferenceState? State { get; private set; }
///
@@ -40,23 +41,23 @@ public SpaceReference()
public DateTime? CreatedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -68,9 +69,9 @@ public SpaceReference()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SpaceView.cs b/src/Wallee/Model/SpaceView.cs
index 61a9a76..2d8d895 100644
--- a/src/Wallee/Model/SpaceView.cs
+++ b/src/Wallee/Model/SpaceView.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SpaceView : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -34,16 +35,16 @@ public SpaceView()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -55,9 +56,9 @@ public SpaceView()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -70,9 +71,9 @@ public SpaceView()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/StaticValue.cs b/src/Wallee/Model/StaticValue.cs
index c261f4a..b799900 100644
--- a/src/Wallee/Model/StaticValue.cs
+++ b/src/Wallee/Model/StaticValue.cs
@@ -29,8 +29,9 @@ public StaticValue()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -41,15 +42,16 @@ public StaticValue()
public List Features { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/Subscriber.cs b/src/Wallee/Model/Subscriber.cs
index b140218..c29ff32 100644
--- a/src/Wallee/Model/Subscriber.cs
+++ b/src/Wallee/Model/Subscriber.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class Subscriber : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -75,9 +76,9 @@ public Subscriber()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -89,9 +90,9 @@ public Subscriber()
public string Language { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -103,9 +104,9 @@ public Subscriber()
public Dictionary MetaData { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -124,9 +125,9 @@ public Subscriber()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriberActive.cs b/src/Wallee/Model/SubscriberActive.cs
index 2203204..c63a34b 100644
--- a/src/Wallee/Model/SubscriberActive.cs
+++ b/src/Wallee/Model/SubscriberActive.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriberActive : SubscriberUpdate, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
diff --git a/src/Wallee/Model/SubscriberCreate.cs b/src/Wallee/Model/SubscriberCreate.cs
index f57cdf5..c880114 100644
--- a/src/Wallee/Model/SubscriberCreate.cs
+++ b/src/Wallee/Model/SubscriberCreate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriberCreate : AbstractSubscriberUpdate, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
diff --git a/src/Wallee/Model/Subscription.cs b/src/Wallee/Model/Subscription.cs
index 5de1e5f..7f284d5 100644
--- a/src/Wallee/Model/Subscription.cs
+++ b/src/Wallee/Model/Subscription.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class Subscription : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionState? State { get; private set; }
///
@@ -64,9 +65,9 @@ public Subscription()
public string Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -77,22 +78,23 @@ public Subscription()
public DateTime? InitializedOn { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -146,9 +148,9 @@ public Subscription()
public Token Token { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionAffiliate.cs b/src/Wallee/Model/SubscriptionAffiliate.cs
index e197bc2..db03f95 100644
--- a/src/Wallee/Model/SubscriptionAffiliate.cs
+++ b/src/Wallee/Model/SubscriptionAffiliate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriptionAffiliate : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -41,22 +42,23 @@ public SubscriptionAffiliate()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -74,9 +76,9 @@ public SubscriptionAffiliate()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -88,9 +90,9 @@ public SubscriptionAffiliate()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionAffiliateUpdate.cs b/src/Wallee/Model/SubscriptionAffiliateUpdate.cs
index 9e2e411..9dd2041 100644
--- a/src/Wallee/Model/SubscriptionAffiliateUpdate.cs
+++ b/src/Wallee/Model/SubscriptionAffiliateUpdate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriptionAffiliateUpdate : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
@@ -66,8 +67,9 @@ public SubscriptionAffiliateUpdate(long? id, long? version)
public long? Version { get; set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; set; }
diff --git a/src/Wallee/Model/SubscriptionCharge.cs b/src/Wallee/Model/SubscriptionCharge.cs
index 3cb80ba..6dd5036 100644
--- a/src/Wallee/Model/SubscriptionCharge.cs
+++ b/src/Wallee/Model/SubscriptionCharge.cs
@@ -26,8 +26,9 @@ public partial class SubscriptionCharge : IEquatable
[DataMember(Name="processingType", EmitDefaultValue=false)]
public SubscriptionChargeProcessingType? ProcessingType { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionChargeState? State { get; private set; }
///
@@ -82,15 +83,16 @@ public SubscriptionCharge()
public string FailedUrl { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -101,9 +103,9 @@ public SubscriptionCharge()
public List LedgerEntries { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -114,9 +116,9 @@ public SubscriptionCharge()
public DateTime? PlannedExecutionDate { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -156,9 +158,9 @@ public SubscriptionCharge()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionLedgerEntry.cs b/src/Wallee/Model/SubscriptionLedgerEntry.cs
index e6ec092..4ea85bb 100644
--- a/src/Wallee/Model/SubscriptionLedgerEntry.cs
+++ b/src/Wallee/Model/SubscriptionLedgerEntry.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriptionLedgerEntry : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionLedgerEntryState? State { get; private set; }
///
@@ -58,9 +59,9 @@ public SubscriptionLedgerEntry()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -78,23 +79,23 @@ public SubscriptionLedgerEntry()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -130,9 +131,9 @@ public SubscriptionLedgerEntry()
public string Title { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionMetric.cs b/src/Wallee/Model/SubscriptionMetric.cs
index 6ea1531..57ce84f 100644
--- a/src/Wallee/Model/SubscriptionMetric.cs
+++ b/src/Wallee/Model/SubscriptionMetric.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriptionMetric : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -40,16 +41,16 @@ public SubscriptionMetric()
public DatabaseTranslatedString Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -60,9 +61,9 @@ public SubscriptionMetric()
public DatabaseTranslatedString Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -74,9 +75,9 @@ public SubscriptionMetric()
public SubscriptionMetricType Type { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionMetricType.cs b/src/Wallee/Model/SubscriptionMetricType.cs
index 3fe2ff1..a599a3e 100644
--- a/src/Wallee/Model/SubscriptionMetricType.cs
+++ b/src/Wallee/Model/SubscriptionMetricType.cs
@@ -29,8 +29,9 @@ public SubscriptionMetricType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -41,15 +42,16 @@ public SubscriptionMetricType()
public Feature Feature { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionMetricUsageReport.cs b/src/Wallee/Model/SubscriptionMetricUsageReport.cs
index 895b892..860b7a8 100644
--- a/src/Wallee/Model/SubscriptionMetricUsageReport.cs
+++ b/src/Wallee/Model/SubscriptionMetricUsageReport.cs
@@ -62,16 +62,16 @@ public SubscriptionMetricUsageReport()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -83,9 +83,9 @@ public SubscriptionMetricUsageReport()
public long? Metric { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -97,9 +97,9 @@ public SubscriptionMetricUsageReport()
public long? Subscription { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionPeriodBill.cs b/src/Wallee/Model/SubscriptionPeriodBill.cs
index b247522..d5287ce 100644
--- a/src/Wallee/Model/SubscriptionPeriodBill.cs
+++ b/src/Wallee/Model/SubscriptionPeriodBill.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriptionPeriodBill : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionPeriodBillState? State { get; private set; }
///
@@ -46,22 +47,23 @@ public SubscriptionPeriodBill()
public DateTime? EffectivePeriodEndDate { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -78,9 +80,9 @@ public SubscriptionPeriodBill()
public DateTime? PlannedPeriodEndDate { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -92,9 +94,9 @@ public SubscriptionPeriodBill()
public SubscriptionVersion SubscriptionVersion { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionProduct.cs b/src/Wallee/Model/SubscriptionProduct.cs
index 4072369..a8acaf3 100644
--- a/src/Wallee/Model/SubscriptionProduct.cs
+++ b/src/Wallee/Model/SubscriptionProduct.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriptionProduct : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionProductState? State { get; private set; }
///
@@ -48,16 +49,16 @@ public SubscriptionProduct()
public string FailedPaymentSuspensionPeriod { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -69,9 +70,9 @@ public SubscriptionProduct()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -104,9 +105,9 @@ public SubscriptionProduct()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionProductComponent.cs b/src/Wallee/Model/SubscriptionProductComponent.cs
index 3e7a6f4..9724c34 100644
--- a/src/Wallee/Model/SubscriptionProductComponent.cs
+++ b/src/Wallee/Model/SubscriptionProductComponent.cs
@@ -56,16 +56,16 @@ public SubscriptionProductComponent()
public DatabaseTranslatedString Description { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -119,9 +119,9 @@ public SubscriptionProductComponent()
public TaxClass TaxClass { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionProductComponentGroup.cs b/src/Wallee/Model/SubscriptionProductComponentGroup.cs
index 88e9b67..8abbcae 100644
--- a/src/Wallee/Model/SubscriptionProductComponentGroup.cs
+++ b/src/Wallee/Model/SubscriptionProductComponentGroup.cs
@@ -29,16 +29,16 @@ public SubscriptionProductComponentGroup()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -70,9 +70,9 @@ public SubscriptionProductComponentGroup()
public int? SortOrder { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionProductComponentReference.cs b/src/Wallee/Model/SubscriptionProductComponentReference.cs
index 759a5ef..27a7ae2 100644
--- a/src/Wallee/Model/SubscriptionProductComponentReference.cs
+++ b/src/Wallee/Model/SubscriptionProductComponentReference.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriptionProductComponentReference : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionProductComponentReferenceState? State { get; private set; }
///
@@ -34,16 +35,16 @@ public SubscriptionProductComponentReference()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -55,9 +56,9 @@ public SubscriptionProductComponentReference()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -69,9 +70,9 @@ public SubscriptionProductComponentReference()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionProductRetirement.cs b/src/Wallee/Model/SubscriptionProductRetirement.cs
index 6ae445c..606a5dc 100644
--- a/src/Wallee/Model/SubscriptionProductRetirement.cs
+++ b/src/Wallee/Model/SubscriptionProductRetirement.cs
@@ -29,23 +29,23 @@ public SubscriptionProductRetirement()
}
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -68,9 +68,9 @@ public SubscriptionProductRetirement()
public SubscriptionProduct TargetProduct { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionProductVersion.cs b/src/Wallee/Model/SubscriptionProductVersion.cs
index 3d7ca81..3bf0e85 100644
--- a/src/Wallee/Model/SubscriptionProductVersion.cs
+++ b/src/Wallee/Model/SubscriptionProductVersion.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriptionProductVersion : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionProductVersionState? State { get; private set; }
///
@@ -80,9 +81,9 @@ public SubscriptionProductVersion()
public List EnabledCurrencies { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -94,9 +95,9 @@ public SubscriptionProductVersion()
public int? IncrementNumber { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -128,9 +129,9 @@ public SubscriptionProductVersion()
public DateTime? ObsoletedOn { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -163,9 +164,9 @@ public SubscriptionProductVersion()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionProductVersionPending.cs b/src/Wallee/Model/SubscriptionProductVersionPending.cs
index 095ca99..ae12f80 100644
--- a/src/Wallee/Model/SubscriptionProductVersionPending.cs
+++ b/src/Wallee/Model/SubscriptionProductVersionPending.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriptionProductVersionPending : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionProductVersionState? State { get; set; }
///
diff --git a/src/Wallee/Model/SubscriptionProductVersionRetirement.cs b/src/Wallee/Model/SubscriptionProductVersionRetirement.cs
index 6af7c21..7b56da1 100644
--- a/src/Wallee/Model/SubscriptionProductVersionRetirement.cs
+++ b/src/Wallee/Model/SubscriptionProductVersionRetirement.cs
@@ -29,23 +29,23 @@ public SubscriptionProductVersionRetirement()
}
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -69,9 +69,9 @@ public SubscriptionProductVersionRetirement()
public SubscriptionProduct TargetProduct { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionSuspension.cs b/src/Wallee/Model/SubscriptionSuspension.cs
index e543ea9..01bda2a 100644
--- a/src/Wallee/Model/SubscriptionSuspension.cs
+++ b/src/Wallee/Model/SubscriptionSuspension.cs
@@ -33,8 +33,9 @@ public partial class SubscriptionSuspension : IEquatable
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionSuspensionState? State { get; private set; }
///
@@ -46,9 +47,9 @@ public SubscriptionSuspension()
}
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -60,22 +61,23 @@ public SubscriptionSuspension()
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -100,9 +102,9 @@ public SubscriptionSuspension()
public DateTime? PlannedEndDate { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -115,9 +117,9 @@ public SubscriptionSuspension()
public long? Subscription { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/SubscriptionVersion.cs b/src/Wallee/Model/SubscriptionVersion.cs
index 92cbd43..aff723e 100644
--- a/src/Wallee/Model/SubscriptionVersion.cs
+++ b/src/Wallee/Model/SubscriptionVersion.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class SubscriptionVersion : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public SubscriptionVersionState? State { get; private set; }
///
@@ -72,29 +73,30 @@ public SubscriptionVersion()
public DateTime? FailedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -142,9 +144,9 @@ public SubscriptionVersion()
public DateTime? TerminationIssuedOn { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TaxClass.cs b/src/Wallee/Model/TaxClass.cs
index 1df3362..720595d 100644
--- a/src/Wallee/Model/TaxClass.cs
+++ b/src/Wallee/Model/TaxClass.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class TaxClass : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -34,16 +35,16 @@ public TaxClass()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -55,9 +56,9 @@ public TaxClass()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -69,9 +70,9 @@ public TaxClass()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TenantDatabase.cs b/src/Wallee/Model/TenantDatabase.cs
index 7b7c4a8..9d48764 100644
--- a/src/Wallee/Model/TenantDatabase.cs
+++ b/src/Wallee/Model/TenantDatabase.cs
@@ -29,9 +29,9 @@ public TenantDatabase()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -43,9 +43,9 @@ public TenantDatabase()
public string Name { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/Token.cs b/src/Wallee/Model/Token.cs
index f9906c1..450d1a1 100644
--- a/src/Wallee/Model/Token.cs
+++ b/src/Wallee/Model/Token.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class Token : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -34,9 +35,9 @@ public Token()
}
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -69,29 +70,30 @@ public Token()
public string ExternalId { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -111,9 +113,9 @@ public Token()
public string TokenReference { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TokenCreate.cs b/src/Wallee/Model/TokenCreate.cs
index eb4a2ca..396e353 100644
--- a/src/Wallee/Model/TokenCreate.cs
+++ b/src/Wallee/Model/TokenCreate.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class TokenCreate : AbstractTokenUpdate, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; set; }
///
diff --git a/src/Wallee/Model/TokenVersion.cs b/src/Wallee/Model/TokenVersion.cs
index 44f2afc..7db1702 100644
--- a/src/Wallee/Model/TokenVersion.cs
+++ b/src/Wallee/Model/TokenVersion.cs
@@ -26,8 +26,9 @@ public partial class TokenVersion : IEquatable
[DataMember(Name="environment", EmitDefaultValue=false)]
public ChargeAttemptEnvironment? Environment { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public TokenVersionState? State { get; private set; }
///
@@ -51,9 +52,9 @@ public TokenVersion()
public Address BillingAddress { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -72,9 +73,9 @@ public TokenVersion()
public string IconUrl { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -85,15 +86,16 @@ public TokenVersion()
public List Labels { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -135,9 +137,9 @@ public TokenVersion()
public long? PaymentMethodBrand { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -168,9 +170,9 @@ public TokenVersion()
public TokenVersionType Type { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TokenVersionType.cs b/src/Wallee/Model/TokenVersionType.cs
index 4a3011b..ce318e0 100644
--- a/src/Wallee/Model/TokenVersionType.cs
+++ b/src/Wallee/Model/TokenVersionType.cs
@@ -29,8 +29,9 @@ public TokenVersionType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -41,15 +42,16 @@ public TokenVersionType()
public Feature Feature { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/Transaction.cs b/src/Wallee/Model/Transaction.cs
index 2e8e32d..6867bcb 100644
--- a/src/Wallee/Model/Transaction.cs
+++ b/src/Wallee/Model/Transaction.cs
@@ -50,8 +50,9 @@ public partial class Transaction : IEquatable
[DataMember(Name="environmentSelectionStrategy", EmitDefaultValue=false)]
public TransactionEnvironmentSelectionStrategy? EnvironmentSelectionStrategy { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public TransactionState? State { get; private set; }
///
@@ -185,9 +186,9 @@ public Transaction()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -268,9 +269,9 @@ public Transaction()
public TransactionGroup Group { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -300,8 +301,9 @@ public Transaction()
public bool? JavaEnabled { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -312,9 +314,9 @@ public Transaction()
public List LineItems { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -344,9 +346,9 @@ public Transaction()
public PaymentConnectorConfiguration PaymentConnectorConfiguration { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -458,9 +460,9 @@ public Transaction()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TransactionAwareEntity.cs b/src/Wallee/Model/TransactionAwareEntity.cs
index b3034d4..628cb8a 100644
--- a/src/Wallee/Model/TransactionAwareEntity.cs
+++ b/src/Wallee/Model/TransactionAwareEntity.cs
@@ -29,16 +29,16 @@ public TransactionAwareEntity()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
diff --git a/src/Wallee/Model/TransactionComment.cs b/src/Wallee/Model/TransactionComment.cs
index b76dbaf..1600de1 100644
--- a/src/Wallee/Model/TransactionComment.cs
+++ b/src/Wallee/Model/TransactionComment.cs
@@ -41,9 +41,9 @@ public TransactionComment()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -61,16 +61,16 @@ public TransactionComment()
public DateTime? EditedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -87,9 +87,9 @@ public TransactionComment()
public long? Transaction { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TransactionCompletion.cs b/src/Wallee/Model/TransactionCompletion.cs
index b7cef4c..873560c 100644
--- a/src/Wallee/Model/TransactionCompletion.cs
+++ b/src/Wallee/Model/TransactionCompletion.cs
@@ -26,8 +26,9 @@ public partial class TransactionCompletion : TransactionAwareEntity, IEquatable
[DataMember(Name="mode", EmitDefaultValue=false)]
public TransactionCompletionMode? Mode { get; private set; }
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public TransactionCompletionState? State { get; private set; }
///
@@ -62,9 +63,9 @@ public TransactionCompletion()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -100,8 +101,9 @@ public TransactionCompletion()
public List Labels { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -139,9 +141,9 @@ public TransactionCompletion()
public string PaymentInformation { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -203,9 +205,9 @@ public TransactionCompletion()
public DateTime? TimeoutOn { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TransactionGroup.cs b/src/Wallee/Model/TransactionGroup.cs
index 339416a..8b2c338 100644
--- a/src/Wallee/Model/TransactionGroup.cs
+++ b/src/Wallee/Model/TransactionGroup.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class TransactionGroup : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public TransactionGroupState? State { get; private set; }
///
@@ -52,31 +53,31 @@ public TransactionGroup()
public DateTime? EndDate { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TransactionInvoice.cs b/src/Wallee/Model/TransactionInvoice.cs
index d7f8138..aef35b4 100644
--- a/src/Wallee/Model/TransactionInvoice.cs
+++ b/src/Wallee/Model/TransactionInvoice.cs
@@ -26,8 +26,9 @@ public partial class TransactionInvoice : TransactionAwareEntity, IEquatable
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public TransactionInvoiceState? State { get; private set; }
///
@@ -96,8 +97,9 @@ public TransactionInvoice()
public string ExternalId { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -128,9 +130,9 @@ public TransactionInvoice()
public DateTime? PaidOn { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -154,9 +156,9 @@ public TransactionInvoice()
public string TimeZone { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TransactionInvoiceComment.cs b/src/Wallee/Model/TransactionInvoiceComment.cs
index d31c186..965d7f9 100644
--- a/src/Wallee/Model/TransactionInvoiceComment.cs
+++ b/src/Wallee/Model/TransactionInvoiceComment.cs
@@ -41,9 +41,9 @@ public TransactionInvoiceComment()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -61,16 +61,16 @@ public TransactionInvoiceComment()
public DateTime? EditedOn { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -87,9 +87,9 @@ public TransactionInvoiceComment()
public long? TransactionInvoice { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TransactionLineItemVersion.cs b/src/Wallee/Model/TransactionLineItemVersion.cs
index dad4971..e12ad67 100644
--- a/src/Wallee/Model/TransactionLineItemVersion.cs
+++ b/src/Wallee/Model/TransactionLineItemVersion.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class TransactionLineItemVersion : TransactionAwareEntity, IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public TransactionLineItemVersionState? State { get; private set; }
///
@@ -49,9 +50,9 @@ public TransactionLineItemVersion()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -81,8 +82,9 @@ public TransactionLineItemVersion()
public List Labels { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -99,9 +101,9 @@ public TransactionLineItemVersion()
public DateTime? NextUpdateOn { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -143,9 +145,9 @@ public TransactionLineItemVersion()
public Transaction Transaction { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TransactionVoid.cs b/src/Wallee/Model/TransactionVoid.cs
index 2749b69..6b85212 100644
--- a/src/Wallee/Model/TransactionVoid.cs
+++ b/src/Wallee/Model/TransactionVoid.cs
@@ -26,8 +26,9 @@ public partial class TransactionVoid : TransactionAwareEntity, IEquatable
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public TransactionVoidState? State { get; private set; }
///
@@ -48,9 +49,9 @@ public TransactionVoid()
public long? CreatedBy { get; private set; }
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
///
- /// The created on date indicates the date on which the entity was stored into the database.
+ /// The date and time when the object was created.
[DataMember(Name="createdOn", EmitDefaultValue=false)]
public DateTime? CreatedOn { get; private set; }
@@ -73,8 +74,9 @@ public TransactionVoid()
public List Labels { get; private set; }
///
- /// Gets or Sets Language
+ /// The language that is linked to the object.
///
+ /// The language that is linked to the object.
[DataMember(Name="language", EmitDefaultValue=false)]
public string Language { get; private set; }
@@ -86,9 +88,9 @@ public TransactionVoid()
public DateTime? NextUpdateOn { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -124,9 +126,9 @@ public TransactionVoid()
public Transaction Transaction { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/TwoFactorAuthenticationType.cs b/src/Wallee/Model/TwoFactorAuthenticationType.cs
index a0515c7..d3596df 100644
--- a/src/Wallee/Model/TwoFactorAuthenticationType.cs
+++ b/src/Wallee/Model/TwoFactorAuthenticationType.cs
@@ -29,8 +29,9 @@ public TwoFactorAuthenticationType()
}
///
- /// Gets or Sets Description
+ /// The description of the object translated into different languages.
///
+ /// The description of the object translated into different languages.
[DataMember(Name="description", EmitDefaultValue=false)]
public Dictionary Description { get; private set; }
@@ -47,15 +48,16 @@ public TwoFactorAuthenticationType()
public string Icon { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// Gets or Sets Name
+ /// The name of the object translated into different languages.
///
+ /// The name of the object translated into different languages.
[DataMember(Name="name", EmitDefaultValue=false)]
public Dictionary Name { get; private set; }
diff --git a/src/Wallee/Model/User.cs b/src/Wallee/Model/User.cs
index 243e59a..4aa23da 100644
--- a/src/Wallee/Model/User.cs
+++ b/src/Wallee/Model/User.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class User : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -39,16 +40,16 @@ public User()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
@@ -61,9 +62,9 @@ public User()
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/UserAccountRole.cs b/src/Wallee/Model/UserAccountRole.cs
index 1353175..51f96d1 100644
--- a/src/Wallee/Model/UserAccountRole.cs
+++ b/src/Wallee/Model/UserAccountRole.cs
@@ -41,9 +41,9 @@ public UserAccountRole()
public bool? AppliesOnSubAccount { get; private set; }
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -60,9 +60,9 @@ public UserAccountRole()
public long? User { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/UserSpaceRole.cs b/src/Wallee/Model/UserSpaceRole.cs
index d32b935..e86120e 100644
--- a/src/Wallee/Model/UserSpaceRole.cs
+++ b/src/Wallee/Model/UserSpaceRole.cs
@@ -29,9 +29,9 @@ public UserSpaceRole()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
@@ -54,9 +54,9 @@ public UserSpaceRole()
public long? User { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/WebhookIdentity.cs b/src/Wallee/Model/WebhookIdentity.cs
index 8d7996b..12fecb7 100644
--- a/src/Wallee/Model/WebhookIdentity.cs
+++ b/src/Wallee/Model/WebhookIdentity.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class WebhookIdentity : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -34,16 +35,16 @@ public WebhookIdentity()
}
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
///
- /// The ID is the primary key of the entity. The ID identifies the entity uniquely.
+ /// A unique identifier for the object.
[DataMember(Name="id", EmitDefaultValue=false)]
public long? Id { get; private set; }
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
///
- /// The linked space id holds the ID of the space to which the entity belongs to.
+ /// The ID of the space this object belongs to.
[DataMember(Name="linkedSpaceId", EmitDefaultValue=false)]
public long? LinkedSpaceId { get; private set; }
@@ -55,17 +56,17 @@ public WebhookIdentity()
public string Name { get; private set; }
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
///
- /// The planned purge date indicates when the entity is permanently removed. When the date is null the entity is not planned to be removed.
+ /// The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
[DataMember(Name="plannedPurgeDate", EmitDefaultValue=false)]
public DateTime? PlannedPurgeDate { get; private set; }
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
///
- /// The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
+ /// The version is used for optimistic locking and incremented whenever the object is updated.
[DataMember(Name="version", EmitDefaultValue=false)]
public int? Version { get; private set; }
diff --git a/src/Wallee/Model/WebhookListener.cs b/src/Wallee/Model/WebhookListener.cs
index e8b7f08..9ff0146 100644
--- a/src/Wallee/Model/WebhookListener.cs
+++ b/src/Wallee/Model/WebhookListener.cs
@@ -21,8 +21,9 @@ namespace Wallee.Model
public partial class WebhookListener : IEquatable
{
///
- /// Gets or Sets State
+ /// The object's current state.
///
+ /// The object's current state.
[DataMember(Name="state", EmitDefaultValue=false)]
public CreationEntityState? State { get; private set; }
///
@@ -48,9 +49,9 @@ public WebhookListener()
public List