@@ -20,6 +20,32 @@ namespace Wallee.Model
20
20
[ DataContract ]
21
21
public partial class ChargeAttempt : TransactionAwareEntity , IEquatable < ChargeAttempt >
22
22
{
23
+ /// <summary>
24
+ /// Gets or Sets CompletionBehavior
25
+ /// </summary>
26
+ [ DataMember ( Name = "completionBehavior" , EmitDefaultValue = false ) ]
27
+ public TransactionCompletionBehavior ? CompletionBehavior { get ; set ; }
28
+ /// <summary>
29
+ /// The customers presence indicates which kind of customer interaction was used during the charge attempt.
30
+ /// </summary>
31
+ /// <value>The customers presence indicates which kind of customer interaction was used during the charge attempt.</value>
32
+ [ DataMember ( Name = "customersPresence" , EmitDefaultValue = false ) ]
33
+ public CustomersPresence ? CustomersPresence { get ; set ; }
34
+ /// <summary>
35
+ /// Gets or Sets Environment
36
+ /// </summary>
37
+ [ DataMember ( Name = "environment" , EmitDefaultValue = false ) ]
38
+ public ChargeAttemptEnvironment ? Environment { get ; set ; }
39
+ /// <summary>
40
+ /// Gets or Sets State
41
+ /// </summary>
42
+ [ DataMember ( Name = "state" , EmitDefaultValue = false ) ]
43
+ public ChargeAttemptState ? State { get ; set ; }
44
+ /// <summary>
45
+ /// Gets or Sets WalletType
46
+ /// </summary>
47
+ [ DataMember ( Name = "walletType" , EmitDefaultValue = false ) ]
48
+ public WalletType ? WalletType { get ; set ; }
23
49
/// <summary>
24
50
/// Initializes a new instance of the <see cref="ChargeAttempt" /> class.
25
51
/// </summary>
@@ -37,11 +63,6 @@ public ChargeAttempt()
37
63
[ DataMember ( Name = "charge" , EmitDefaultValue = false ) ]
38
64
public Charge Charge { get ; private set ; }
39
65
40
- /// <summary>
41
- /// Gets or Sets CompletionBehavior
42
- /// </summary>
43
- [ DataMember ( Name = "completionBehavior" , EmitDefaultValue = false ) ]
44
- public TransactionCompletionBehavior CompletionBehavior { get ; private set ; }
45
66
46
67
/// <summary>
47
68
/// Gets or Sets ConnectorConfiguration
@@ -56,18 +77,7 @@ public ChargeAttempt()
56
77
[ DataMember ( Name = "createdOn" , EmitDefaultValue = false ) ]
57
78
public DateTime ? CreatedOn { get ; private set ; }
58
79
59
- /// <summary>
60
- /// The customers presence indicates which kind of customer interaction was used during the charge attempt.
61
- /// </summary>
62
- /// <value>The customers presence indicates which kind of customer interaction was used during the charge attempt.</value>
63
- [ DataMember ( Name = "customersPresence" , EmitDefaultValue = false ) ]
64
- public CustomersPresence CustomersPresence { get ; private set ; }
65
80
66
- /// <summary>
67
- /// Gets or Sets Environment
68
- /// </summary>
69
- [ DataMember ( Name = "environment" , EmitDefaultValue = false ) ]
70
- public ChargeAttemptEnvironment Environment { get ; private set ; }
71
81
72
82
/// <summary>
73
83
/// Gets or Sets FailedOn
@@ -136,11 +146,6 @@ public ChargeAttempt()
136
146
[ DataMember ( Name = "spaceViewId" , EmitDefaultValue = false ) ]
137
147
public long ? SpaceViewId { get ; private set ; }
138
148
139
- /// <summary>
140
- /// Gets or Sets State
141
- /// </summary>
142
- [ DataMember ( Name = "state" , EmitDefaultValue = false ) ]
143
- public ChargeAttemptState State { get ; private set ; }
144
149
145
150
/// <summary>
146
151
/// Gets or Sets SucceededOn
@@ -186,11 +191,6 @@ public ChargeAttempt()
186
191
[ DataMember ( Name = "version" , EmitDefaultValue = false ) ]
187
192
public int ? Version { get ; private set ; }
188
193
189
- /// <summary>
190
- /// Gets or Sets WalletType
191
- /// </summary>
192
- [ DataMember ( Name = "walletType" , EmitDefaultValue = false ) ]
193
- public WalletType WalletType { get ; private set ; }
194
194
195
195
/// <summary>
196
196
/// Returns the string presentation of the object
0 commit comments