@@ -401,9 +401,9 @@ public static class Parent extends StripeObject {
401401 @ SerializedName ("invoice_item_details" )
402402 InvoiceItemDetails invoiceItemDetails ;
403403
404- /** Details about the license fee subscription that generated this line item. */
405- @ SerializedName ("license_fee_subscription_details " )
406- LicenseFeeSubscriptionDetails licenseFeeSubscriptionDetails ;
404+ /** Details about the pricing plan subscription that generated this line item. */
405+ @ SerializedName ("pricing_plan_subscription_details " )
406+ PricingPlanSubscriptionDetails pricingPlanSubscriptionDetails ;
407407
408408 /** Details about the rate card subscription that generated this line item. */
409409 @ SerializedName ("rate_card_subscription_details" )
@@ -420,7 +420,7 @@ public static class Parent extends StripeObject {
420420 /**
421421 * The type of parent that generated this line item
422422 *
423- * <p>One of {@code invoice_item_details}, {@code license_fee_subscription_details }, {@code
423+ * <p>One of {@code invoice_item_details}, {@code pricing_plan_subscription_details }, {@code
424424 * rate_card_subscription_details}, {@code schedule_details}, or {@code
425425 * subscription_item_details}.
426426 */
@@ -486,30 +486,22 @@ public static class CreditedItems extends StripeObject {
486486 }
487487
488488 /**
489- * For more details about LicenseFeeSubscriptionDetails , please refer to the <a
489+ * For more details about PricingPlanSubscriptionDetails , please refer to the <a
490490 * href="https://docs.stripe.com/api">API Reference.</a>
491491 */
492492 @ Getter
493493 @ Setter
494494 @ EqualsAndHashCode (callSuper = false )
495- public static class LicenseFeeSubscriptionDetails extends StripeObject {
495+ public static class PricingPlanSubscriptionDetails extends StripeObject {
496496 /** The invoice item that generated this line item. */
497497 @ SerializedName ("invoice_item" )
498498 String invoiceItem ;
499499
500- /** The license fee subscription that generated this line item. */
501- @ SerializedName ("license_fee_subscription" )
502- String licenseFeeSubscription ;
503-
504- /** The license fee version at the time this line item was generated. */
505- @ SerializedName ("license_fee_version" )
506- String licenseFeeVersion ;
507-
508- /** The pricing plan subscription that manages the license fee subscription. */
500+ /** The pricing plan subscription that manages this charge. */
509501 @ SerializedName ("pricing_plan_subscription" )
510502 String pricingPlanSubscription ;
511503
512- /** The pricing plan version at the time this line item was generated. */
504+ /** The pricing plan version at the time this charge was generated. */
513505 @ SerializedName ("pricing_plan_version" )
514506 String pricingPlanVersion ;
515507 }
@@ -526,14 +518,6 @@ public static class RateCardSubscriptionDetails extends StripeObject {
526518 @ SerializedName ("invoice_item" )
527519 String invoiceItem ;
528520
529- /** The pricing plan subscription that manages the rate card subscription. */
530- @ SerializedName ("pricing_plan_subscription" )
531- String pricingPlanSubscription ;
532-
533- /** The pricing plan version at the time this line item was generated. */
534- @ SerializedName ("pricing_plan_version" )
535- String pricingPlanVersion ;
536-
537521 /** The rate card subscription that generated this line item. */
538522 @ SerializedName ("rate_card_subscription" )
539523 String rateCardSubscription ;
0 commit comments