@@ -43,8 +43,8 @@ public class Settlement extends StripeObject implements HasId {
43
43
String id ;
44
44
45
45
/** The total interchange received as reimbursement for the transactions. */
46
- @ SerializedName ("interchange_fees " )
47
- Long interchangeFees ;
46
+ @ SerializedName ("interchange_fees_amount " )
47
+ Long interchangeFeesAmount ;
48
48
49
49
/**
50
50
* Has the value {@code true} if the object exists in live mode or the value {@code false} if the
@@ -62,16 +62,16 @@ public class Settlement extends StripeObject implements HasId {
62
62
Map <String , String > metadata ;
63
63
64
64
/** The total net amount required to settle with the network. */
65
- @ SerializedName ("net_total " )
66
- Long netTotal ;
65
+ @ SerializedName ("net_total_amount " )
66
+ Long netTotalAmount ;
67
67
68
68
/** The card network for this settlement report. One of ["visa", "maestro"] */
69
69
@ SerializedName ("network" )
70
70
String network ;
71
71
72
72
/** The total amount of fees owed to the network. */
73
- @ SerializedName ("network_fees " )
74
- Long networkFees ;
73
+ @ SerializedName ("network_fees_amount " )
74
+ Long networkFeesAmount ;
75
75
76
76
/** The Settlement Identification Number assigned by the network. */
77
77
@ SerializedName ("network_settlement_identifier" )
@@ -105,11 +105,11 @@ public class Settlement extends StripeObject implements HasId {
105
105
@ SerializedName ("status" )
106
106
String status ;
107
107
108
+ /** The total transaction amount reflected in this settlement. */
109
+ @ SerializedName ("transaction_amount" )
110
+ Long transactionAmount ;
111
+
108
112
/** The total number of transactions reflected in this settlement. */
109
113
@ SerializedName ("transaction_count" )
110
114
Long transactionCount ;
111
-
112
- /** The total transaction amount reflected in this settlement. */
113
- @ SerializedName ("transaction_volume" )
114
- Long transactionVolume ;
115
115
}
0 commit comments