@@ -403,6 +403,10 @@ public static class Parent extends StripeObject {
403403 @ SerializedName ("rate_card_subscription_details" )
404404 RateCardSubscriptionDetails rateCardSubscriptionDetails ;
405405
406+ /** Details about the subscription schedule that generated this line item. */
407+ @ SerializedName ("schedule_details" )
408+ ScheduleDetails scheduleDetails ;
409+
406410 /** Details about the subscription item that generated this line item. */
407411 @ SerializedName ("subscription_item_details" )
408412 SubscriptionItemDetails subscriptionItemDetails ;
@@ -411,7 +415,8 @@ public static class Parent extends StripeObject {
411415 * The type of parent that generated this line item
412416 *
413417 * <p>One of {@code invoice_item_details}, {@code license_fee_subscription_details}, {@code
414- * rate_card_subscription_details}, or {@code subscription_item_details}.
418+ * rate_card_subscription_details}, {@code schedule_details}, or {@code
419+ * subscription_item_details}.
415420 */
416421 @ SerializedName ("type" )
417422 String type ;
@@ -532,6 +537,19 @@ public static class RateCardSubscriptionDetails extends StripeObject {
532537 String rateCardVersion ;
533538 }
534539
540+ /**
541+ * For more details about ScheduleDetails, please refer to the <a
542+ * href="https://docs.stripe.com/api">API Reference.</a>
543+ */
544+ @ Getter
545+ @ Setter
546+ @ EqualsAndHashCode (callSuper = false )
547+ public static class ScheduleDetails extends StripeObject {
548+ /** The subscription schedule that generated this line item. */
549+ @ SerializedName ("schedule" )
550+ String schedule ;
551+ }
552+
535553 /**
536554 * For more details about SubscriptionItemDetails, please refer to the <a
537555 * href="https://docs.stripe.com/api">API Reference.</a>
0 commit comments