@@ -19,18 +19,29 @@ public class BunqMeTabEntry : BunqModel
19
19
public const string FIELD_DESCRIPTION = "description" ;
20
20
public const string FIELD_REDIRECT_URL = "redirect_url" ;
21
21
22
+ /// <summary>
23
+ /// The requested Amount.
24
+ /// </summary>
25
+ [ JsonProperty ( PropertyName = "amount_inquired" ) ]
26
+ public Amount AmountInquired { get ; set ; }
22
27
23
28
/// <summary>
24
- /// The uuid of the bunq.me.
29
+ /// The description for the bunq.me. Maximum 9000 characters .
25
30
/// </summary>
26
- [ JsonProperty ( PropertyName = "uuid " ) ]
27
- public string Uuid { get ; set ; }
31
+ [ JsonProperty ( PropertyName = "description " ) ]
32
+ public string Description { get ; set ; }
28
33
29
34
/// <summary>
30
- /// The requested Amount .
35
+ /// The URL which the user is sent to when a payment is completed .
31
36
/// </summary>
32
- [ JsonProperty ( PropertyName = "amount_inquired" ) ]
33
- public Amount AmountInquired { get ; set ; }
37
+ [ JsonProperty ( PropertyName = "redirect_url" ) ]
38
+ public string RedirectUrl { get ; set ; }
39
+
40
+ /// <summary>
41
+ /// The uuid of the bunq.me.
42
+ /// </summary>
43
+ [ JsonProperty ( PropertyName = "uuid" ) ]
44
+ public string Uuid { get ; set ; }
34
45
35
46
/// <summary>
36
47
/// The LabelMonetaryAccount with the public information of the User and the MonetaryAccount that created the
@@ -39,31 +50,18 @@ public class BunqMeTabEntry : BunqModel
39
50
[ JsonProperty ( PropertyName = "alias" ) ]
40
51
public MonetaryAccountReference Alias { get ; set ; }
41
52
42
- /// <summary>
43
- /// The description for the bunq.me. Maximum 9000 characters.
44
- /// </summary>
45
- [ JsonProperty ( PropertyName = "description" ) ]
46
- public string Description { get ; set ; }
47
-
48
53
/// <summary>
49
54
/// The status of the bunq.me. Can be WAITING_FOR_PAYMENT, CANCELLED or EXPIRED.
50
55
/// </summary>
51
56
[ JsonProperty ( PropertyName = "status" ) ]
52
57
public string Status { get ; set ; }
53
58
54
- /// <summary>
55
- /// The URL which the user is sent to when a payment is completed.
56
- /// </summary>
57
- [ JsonProperty ( PropertyName = "redirect_url" ) ]
58
- public string RedirectUrl { get ; set ; }
59
-
60
59
/// <summary>
61
60
/// List of available merchants.
62
61
/// </summary>
63
62
[ JsonProperty ( PropertyName = "merchant_available" ) ]
64
63
public List < BunqMeMerchantAvailable > MerchantAvailable { get ; set ; }
65
64
66
-
67
65
/// <summary>
68
66
/// </summary>
69
67
public override bool IsAllFieldNull ( )
0 commit comments