You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/NoFrixion.MoneyMoov/Models/Payouts/PayoutCreate.cs
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -48,10 +48,26 @@ public class PayoutCreate
48
48
publicdecimal?Amount{get;set;}
49
49
50
50
/// <summary>
51
-
/// Gets or Sets the your reference property.
51
+
/// The Your reference field is an optional field that gets set locally on the payer's transaction record. It does not get
52
+
/// sent out through the payment network. The maximum length for the field is 256 characters. An empty value is also supported.
53
+
/// Supported chracters:
54
+
/// a b c d e f g h i j k l m n o p q r s t u v w x y z
55
+
/// A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
56
+
/// 0 1 2 3 4 5 6 7 8 9
57
+
/// / - ? : ( ) . , ' + Space
58
+
/// In addition the field cannot start with a : or - character.
52
59
/// </summary>
53
60
publicstring?YourReference{get;set;}
54
61
62
+
/// <summary>
63
+
/// The Their reference field gets sent to the payee and appears on their transaction record.
64
+
/// The maximum length for the field varies depending on the payment network. For SEPA (Euro) it is 140 characters. For Faster Payments (GBP) it is 18 characters.
65
+
/// a b c d e f g h i j k l m n o p q r s t u v w x y z
66
+
/// A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
67
+
/// 0 1 2 3 4 5 6 7 8 9
68
+
/// / - ? : ( ) . , ' + Space
69
+
/// In addition the field cannot start with a : or - character.
Copy file name to clipboardExpand all lines: src/NoFrixion.MoneyMoov/Models/Payouts/PayoutUpdate.cs
+20-1Lines changed: 20 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,11 +31,30 @@ public class PayoutUpdate
31
31
32
32
publicCurrencyTypeEnum?Currency{get;set;}
33
33
34
-
[Range(0.01,double.MaxValue,ErrorMessage="Minimum value of 0.01 is required for Amount.")]
34
+
[Range(0.0001,double.MaxValue,ErrorMessage="Minimum value of 0.0001 is required for Amount.")]
35
35
publicdecimal?Amount{get;set;}
36
36
37
+
/// <summary>
38
+
/// The Your reference field is an optional field that gets set locally on the payer's transaction record. It does not get
39
+
/// sent out through the payment network. The maximum length for the field is 256 characters. An empty value is also supported.
40
+
/// Supported characters:
41
+
/// a b c d e f g h i j k l m n o p q r s t u v w x y z
42
+
/// A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
43
+
/// 0 1 2 3 4 5 6 7 8 9
44
+
/// / - ? : ( ) . , ' + Space
45
+
/// In addition the field cannot start with a : or - character.
46
+
/// </summary>
37
47
publicstring?YourReference{get;set;}
38
48
49
+
/// <summary>
50
+
/// The Their reference field gets sent to the payee and appears on their transaction record.
51
+
/// The maximum length for the field varies depending on the payment network. For SEPA (Euro) it is 140 characters. For Faster Payments (GBP) it is 18 characters.
52
+
/// a b c d e f g h i j k l m n o p q r s t u v w x y z
53
+
/// A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
54
+
/// 0 1 2 3 4 5 6 7 8 9
55
+
/// / - ? : ( ) . , ' + Space
56
+
/// In addition the field cannot start with a : or - character.
0 commit comments