@@ -43,10 +43,6 @@ public class PaymentRecord extends ApiResource implements HasId {
43
43
@ SerializedName ("amount_guaranteed" )
44
44
AmountGuaranteed amountGuaranteed ;
45
45
46
- /** A representation of an amount of money, consisting of an amount and a currency. */
47
- @ SerializedName ("amount_refunded" )
48
- AmountRefunded amountRefunded ;
49
-
50
46
/** A representation of an amount of money, consisting of an amount and a currency. */
51
47
@ SerializedName ("amount_requested" )
52
48
AmountRequested amountRequested ;
@@ -459,28 +455,6 @@ public static class AmountGuaranteed extends StripeObject {
459
455
Long value ;
460
456
}
461
457
462
- /** A representation of an amount of money, consisting of an amount and a currency. */
463
- @ Getter
464
- @ Setter
465
- @ EqualsAndHashCode (callSuper = false )
466
- public static class AmountRefunded extends StripeObject {
467
- /**
468
- * Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency
469
- * code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported
470
- * currency</a>.
471
- */
472
- @ SerializedName ("currency" )
473
- String currency ;
474
-
475
- /**
476
- * A positive integer representing the amount in the <a
477
- * href="https://stripe.com/docs/currencies#zero-decimal">smallest currency unit</a> e.g., 100
478
- * cents for $1.00 or 100 for ¥100, a zero-decimal currency).
479
- */
480
- @ SerializedName ("value" )
481
- Long value ;
482
- }
483
-
484
458
/** A representation of an amount of money, consisting of an amount and a currency. */
485
459
@ Getter
486
460
@ Setter
@@ -683,7 +657,6 @@ public void setResponseGetter(StripeResponseGetter responseGetter) {
683
657
trySetResponseGetter (amountCanceled , responseGetter );
684
658
trySetResponseGetter (amountFailed , responseGetter );
685
659
trySetResponseGetter (amountGuaranteed , responseGetter );
686
- trySetResponseGetter (amountRefunded , responseGetter );
687
660
trySetResponseGetter (amountRequested , responseGetter );
688
661
trySetResponseGetter (customerDetails , responseGetter );
689
662
trySetResponseGetter (paymentMethodDetails , responseGetter );
0 commit comments