-
Notifications
You must be signed in to change notification settings - Fork 471
/
Copy pathquotepreviewsubscriptionschedule.go
605 lines (530 loc) · 42.8 KB
/
quotepreviewsubscriptionschedule.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
//
//
// File generated from our OpenAPI spec
//
//
package stripe
// Describes whether the quote line is affecting a new schedule or an existing schedule.
type QuotePreviewSubscriptionScheduleAppliesToType string
// List of values that QuotePreviewSubscriptionScheduleAppliesToType can take
const (
QuotePreviewSubscriptionScheduleAppliesToTypeNewReference QuotePreviewSubscriptionScheduleAppliesToType = "new_reference"
QuotePreviewSubscriptionScheduleAppliesToTypeSubscriptionSchedule QuotePreviewSubscriptionScheduleAppliesToType = "subscription_schedule"
)
// Configures when the subscription schedule generates prorations for phase transitions. Possible values are `prorate_on_next_phase` or `prorate_up_front` with the default being `prorate_on_next_phase`. `prorate_on_next_phase` will apply phase changes and generate prorations at transition time. `prorate_up_front` will bill for all phases within the current billing cycle up front.
type QuotePreviewSubscriptionScheduleBillingBehavior string
// List of values that QuotePreviewSubscriptionScheduleBillingBehavior can take
const (
QuotePreviewSubscriptionScheduleBillingBehaviorProrateOnNextPhase QuotePreviewSubscriptionScheduleBillingBehavior = "prorate_on_next_phase"
QuotePreviewSubscriptionScheduleBillingBehaviorProrateUpFront QuotePreviewSubscriptionScheduleBillingBehavior = "prorate_up_front"
)
// Type of the account referenced.
type QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTaxLiabilityType string
// List of values that QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTaxLiabilityType can take
const (
QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTaxLiabilityTypeAccount QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTaxLiabilityType = "account"
QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTaxLiabilityTypeSelf QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTaxLiabilityType = "self"
)
// Possible values are `phase_start` or `automatic`. If `phase_start` then billing cycle anchor of the subscription is set to the start of the phase when entering the phase. If `automatic` then the billing cycle anchor is automatically modified as needed when entering the phase. For more information, see the billing cycle [documentation](https://stripe.com/docs/billing/subscriptions/billing-cycle).
type QuotePreviewSubscriptionScheduleDefaultSettingsBillingCycleAnchor string
// List of values that QuotePreviewSubscriptionScheduleDefaultSettingsBillingCycleAnchor can take
const (
QuotePreviewSubscriptionScheduleDefaultSettingsBillingCycleAnchorAutomatic QuotePreviewSubscriptionScheduleDefaultSettingsBillingCycleAnchor = "automatic"
QuotePreviewSubscriptionScheduleDefaultSettingsBillingCycleAnchorPhaseStart QuotePreviewSubscriptionScheduleDefaultSettingsBillingCycleAnchor = "phase_start"
)
// Either `charge_automatically`, or `send_invoice`. When charging automatically, Stripe will attempt to pay the underlying subscription at the end of each billing cycle using the default source attached to the customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions and mark the subscription as `active`.
type QuotePreviewSubscriptionScheduleDefaultSettingsCollectionMethod string
// List of values that QuotePreviewSubscriptionScheduleDefaultSettingsCollectionMethod can take
const (
QuotePreviewSubscriptionScheduleDefaultSettingsCollectionMethodChargeAutomatically QuotePreviewSubscriptionScheduleDefaultSettingsCollectionMethod = "charge_automatically"
QuotePreviewSubscriptionScheduleDefaultSettingsCollectionMethodSendInvoice QuotePreviewSubscriptionScheduleDefaultSettingsCollectionMethod = "send_invoice"
)
// Type of the account referenced.
type QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuerType string
// List of values that QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuerType can take
const (
QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuerTypeAccount QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuerType = "account"
QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuerTypeSelf QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuerType = "self"
)
// Behavior of the subscription schedule and underlying subscription when it ends. Possible values are `release` or `cancel` with the default being `release`. `release` will end the subscription schedule and keep the underlying subscription running. `cancel` will end the subscription schedule and cancel the underlying subscription.
type QuotePreviewSubscriptionScheduleEndBehavior string
// List of values that QuotePreviewSubscriptionScheduleEndBehavior can take
const (
QuotePreviewSubscriptionScheduleEndBehaviorCancel QuotePreviewSubscriptionScheduleEndBehavior = "cancel"
QuotePreviewSubscriptionScheduleEndBehaviorNone QuotePreviewSubscriptionScheduleEndBehavior = "none"
QuotePreviewSubscriptionScheduleEndBehaviorRelease QuotePreviewSubscriptionScheduleEndBehavior = "release"
QuotePreviewSubscriptionScheduleEndBehaviorRenew QuotePreviewSubscriptionScheduleEndBehavior = "renew"
)
// The type of error encountered by the price migration.
type QuotePreviewSubscriptionScheduleLastPriceMigrationErrorType string
// List of values that QuotePreviewSubscriptionScheduleLastPriceMigrationErrorType can take
const (
QuotePreviewSubscriptionScheduleLastPriceMigrationErrorTypePriceUniquenessViolation QuotePreviewSubscriptionScheduleLastPriceMigrationErrorType = "price_uniqueness_violation"
)
// The discount end type.
type QuotePreviewSubscriptionSchedulePhaseAddInvoiceItemDiscountDiscountEndType string
// List of values that QuotePreviewSubscriptionSchedulePhaseAddInvoiceItemDiscountDiscountEndType can take
const (
QuotePreviewSubscriptionSchedulePhaseAddInvoiceItemDiscountDiscountEndTypeTimestamp QuotePreviewSubscriptionSchedulePhaseAddInvoiceItemDiscountDiscountEndType = "timestamp"
)
// Type of the account referenced.
type QuotePreviewSubscriptionSchedulePhaseAutomaticTaxLiabilityType string
// List of values that QuotePreviewSubscriptionSchedulePhaseAutomaticTaxLiabilityType can take
const (
QuotePreviewSubscriptionSchedulePhaseAutomaticTaxLiabilityTypeAccount QuotePreviewSubscriptionSchedulePhaseAutomaticTaxLiabilityType = "account"
QuotePreviewSubscriptionSchedulePhaseAutomaticTaxLiabilityTypeSelf QuotePreviewSubscriptionSchedulePhaseAutomaticTaxLiabilityType = "self"
)
// Possible values are `phase_start` or `automatic`. If `phase_start` then billing cycle anchor of the subscription is set to the start of the phase when entering the phase. If `automatic` then the billing cycle anchor is automatically modified as needed when entering the phase. For more information, see the billing cycle [documentation](https://stripe.com/docs/billing/subscriptions/billing-cycle).
type QuotePreviewSubscriptionSchedulePhaseBillingCycleAnchor string
// List of values that QuotePreviewSubscriptionSchedulePhaseBillingCycleAnchor can take
const (
QuotePreviewSubscriptionSchedulePhaseBillingCycleAnchorAutomatic QuotePreviewSubscriptionSchedulePhaseBillingCycleAnchor = "automatic"
QuotePreviewSubscriptionSchedulePhaseBillingCycleAnchorPhaseStart QuotePreviewSubscriptionSchedulePhaseBillingCycleAnchor = "phase_start"
)
// Either `charge_automatically`, or `send_invoice`. When charging automatically, Stripe will attempt to pay the underlying subscription at the end of each billing cycle using the default source attached to the customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions and mark the subscription as `active`.
type QuotePreviewSubscriptionSchedulePhaseCollectionMethod string
// List of values that QuotePreviewSubscriptionSchedulePhaseCollectionMethod can take
const (
QuotePreviewSubscriptionSchedulePhaseCollectionMethodChargeAutomatically QuotePreviewSubscriptionSchedulePhaseCollectionMethod = "charge_automatically"
QuotePreviewSubscriptionSchedulePhaseCollectionMethodSendInvoice QuotePreviewSubscriptionSchedulePhaseCollectionMethod = "send_invoice"
)
// The discount end type.
type QuotePreviewSubscriptionSchedulePhaseDiscountDiscountEndType string
// List of values that QuotePreviewSubscriptionSchedulePhaseDiscountDiscountEndType can take
const (
QuotePreviewSubscriptionSchedulePhaseDiscountDiscountEndTypeTimestamp QuotePreviewSubscriptionSchedulePhaseDiscountDiscountEndType = "timestamp"
)
// Type of the account referenced.
type QuotePreviewSubscriptionSchedulePhaseInvoiceSettingsIssuerType string
// List of values that QuotePreviewSubscriptionSchedulePhaseInvoiceSettingsIssuerType can take
const (
QuotePreviewSubscriptionSchedulePhaseInvoiceSettingsIssuerTypeAccount QuotePreviewSubscriptionSchedulePhaseInvoiceSettingsIssuerType = "account"
QuotePreviewSubscriptionSchedulePhaseInvoiceSettingsIssuerTypeSelf QuotePreviewSubscriptionSchedulePhaseInvoiceSettingsIssuerType = "self"
)
// The discount end type.
type QuotePreviewSubscriptionSchedulePhaseItemDiscountDiscountEndType string
// List of values that QuotePreviewSubscriptionSchedulePhaseItemDiscountDiscountEndType can take
const (
QuotePreviewSubscriptionSchedulePhaseItemDiscountDiscountEndTypeTimestamp QuotePreviewSubscriptionSchedulePhaseItemDiscountDiscountEndType = "timestamp"
)
// Determines the type of trial for this item.
type QuotePreviewSubscriptionSchedulePhaseItemTrialType string
// List of values that QuotePreviewSubscriptionSchedulePhaseItemTrialType can take
const (
QuotePreviewSubscriptionSchedulePhaseItemTrialTypeFree QuotePreviewSubscriptionSchedulePhaseItemTrialType = "free"
QuotePreviewSubscriptionSchedulePhaseItemTrialTypePaid QuotePreviewSubscriptionSchedulePhaseItemTrialType = "paid"
)
// The payment collection behavior for this subscription while paused. One of `keep_as_draft`, `mark_uncollectible`, or `void`.
type QuotePreviewSubscriptionSchedulePhasePauseCollectionBehavior string
// List of values that QuotePreviewSubscriptionSchedulePhasePauseCollectionBehavior can take
const (
QuotePreviewSubscriptionSchedulePhasePauseCollectionBehaviorKeepAsDraft QuotePreviewSubscriptionSchedulePhasePauseCollectionBehavior = "keep_as_draft"
QuotePreviewSubscriptionSchedulePhasePauseCollectionBehaviorMarkUncollectible QuotePreviewSubscriptionSchedulePhasePauseCollectionBehavior = "mark_uncollectible"
QuotePreviewSubscriptionSchedulePhasePauseCollectionBehaviorVoid QuotePreviewSubscriptionSchedulePhasePauseCollectionBehavior = "void"
)
// If the subscription schedule will prorate when transitioning to this phase. Possible values are `create_prorations` and `none`.
type QuotePreviewSubscriptionSchedulePhaseProrationBehavior string
// List of values that QuotePreviewSubscriptionSchedulePhaseProrationBehavior can take
const (
QuotePreviewSubscriptionSchedulePhaseProrationBehaviorAlwaysInvoice QuotePreviewSubscriptionSchedulePhaseProrationBehavior = "always_invoice"
QuotePreviewSubscriptionSchedulePhaseProrationBehaviorCreateProrations QuotePreviewSubscriptionSchedulePhaseProrationBehavior = "create_prorations"
QuotePreviewSubscriptionSchedulePhaseProrationBehaviorNone QuotePreviewSubscriptionSchedulePhaseProrationBehavior = "none"
)
// Specify behavior of the trial when crossing schedule phase boundaries
type QuotePreviewSubscriptionSchedulePhaseTrialContinuation string
// List of values that QuotePreviewSubscriptionSchedulePhaseTrialContinuation can take
const (
QuotePreviewSubscriptionSchedulePhaseTrialContinuationContinue QuotePreviewSubscriptionSchedulePhaseTrialContinuation = "continue"
QuotePreviewSubscriptionSchedulePhaseTrialContinuationNone QuotePreviewSubscriptionSchedulePhaseTrialContinuation = "none"
)
// Configure how an opt-in following a paid trial is billed when using `billing_behavior: prorate_up_front`.
type QuotePreviewSubscriptionSchedulePhaseTrialSettingsEndBehaviorProrateUpFront string
// List of values that QuotePreviewSubscriptionSchedulePhaseTrialSettingsEndBehaviorProrateUpFront can take
const (
QuotePreviewSubscriptionSchedulePhaseTrialSettingsEndBehaviorProrateUpFrontDefer QuotePreviewSubscriptionSchedulePhaseTrialSettingsEndBehaviorProrateUpFront = "defer"
QuotePreviewSubscriptionSchedulePhaseTrialSettingsEndBehaviorProrateUpFrontInclude QuotePreviewSubscriptionSchedulePhaseTrialSettingsEndBehaviorProrateUpFront = "include"
)
// Whether to cancel or preserve `prebilling` if the subscription is updated during the prebilled period.
type QuotePreviewSubscriptionSchedulePrebillingUpdateBehavior string
// List of values that QuotePreviewSubscriptionSchedulePrebillingUpdateBehavior can take
const (
QuotePreviewSubscriptionSchedulePrebillingUpdateBehaviorPrebill QuotePreviewSubscriptionSchedulePrebillingUpdateBehavior = "prebill"
QuotePreviewSubscriptionSchedulePrebillingUpdateBehaviorReset QuotePreviewSubscriptionSchedulePrebillingUpdateBehavior = "reset"
)
// The present status of the subscription schedule. Possible values are `not_started`, `active`, `completed`, `released`, and `canceled`. You can read more about the different states in our [behavior guide](https://stripe.com/docs/billing/subscriptions/subscription-schedules).
type QuotePreviewSubscriptionScheduleStatus string
// List of values that QuotePreviewSubscriptionScheduleStatus can take
const (
QuotePreviewSubscriptionScheduleStatusActive QuotePreviewSubscriptionScheduleStatus = "active"
QuotePreviewSubscriptionScheduleStatusCanceled QuotePreviewSubscriptionScheduleStatus = "canceled"
QuotePreviewSubscriptionScheduleStatusCompleted QuotePreviewSubscriptionScheduleStatus = "completed"
QuotePreviewSubscriptionScheduleStatusNotStarted QuotePreviewSubscriptionScheduleStatus = "not_started"
QuotePreviewSubscriptionScheduleStatusReleased QuotePreviewSubscriptionScheduleStatus = "released"
)
// Preview the schedules that would be generated by accepting the quote
type QuotePreviewSubscriptionScheduleListParams struct {
ListParams `form:"*"`
Quote *string `form:"-"` // Included in URL
// Specifies which fields in the response should be expanded.
Expand []*string `form:"expand"`
}
// AddExpand appends a new field to expand.
func (p *QuotePreviewSubscriptionScheduleListParams) AddExpand(f string) {
p.Expand = append(p.Expand, &f)
}
type QuotePreviewSubscriptionScheduleAppliesTo struct {
// A custom string that identifies a new subscription schedule being created upon quote acceptance. All quote lines with the same `new_reference` field will be applied to the creation of a new subscription schedule.
NewReference string `json:"new_reference"`
// The ID of the schedule the line applies to.
SubscriptionSchedule string `json:"subscription_schedule"`
// Describes whether the quote line is affecting a new schedule or an existing schedule.
Type QuotePreviewSubscriptionScheduleAppliesToType `json:"type"`
}
// Object representing the start and end dates for the current phase of the subscription schedule, if it is `active`.
type QuotePreviewSubscriptionScheduleCurrentPhase struct {
// The end of this phase of the subscription schedule.
EndDate int64 `json:"end_date"`
// The start of this phase of the subscription schedule.
StartDate int64 `json:"start_date"`
}
// The account that's liable for tax. If set, the business address and tax registrations required to perform the tax calculation are loaded from this account. The tax transaction is returned in the report of the connected account.
type QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTaxLiability struct {
// The connected account being referenced when `type` is `account`.
Account *Account `json:"account"`
// Type of the account referenced.
Type QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTaxLiabilityType `json:"type"`
}
type QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTax struct {
// Whether Stripe automatically computes tax on invoices created during this phase.
Enabled bool `json:"enabled"`
// The account that's liable for tax. If set, the business address and tax registrations required to perform the tax calculation are loaded from this account. The tax transaction is returned in the report of the connected account.
Liability *QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTaxLiability `json:"liability"`
}
// Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period
type QuotePreviewSubscriptionScheduleDefaultSettingsBillingThresholds struct {
// Monetary threshold that triggers the subscription to create an invoice
AmountGTE int64 `json:"amount_gte"`
// Indicates if the `billing_cycle_anchor` should be reset when a threshold is reached. If true, `billing_cycle_anchor` will be updated to the date/time the threshold was last reached; otherwise, the value will remain unchanged. This value may not be `true` if the subscription contains items with plans that have `aggregate_usage=last_ever`.
ResetBillingCycleAnchor bool `json:"reset_billing_cycle_anchor"`
}
type QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuer struct {
// The connected account being referenced when `type` is `account`.
Account *Account `json:"account"`
// Type of the account referenced.
Type QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuerType `json:"type"`
}
type QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettings struct {
// The account tax IDs associated with the subscription schedule. Will be set on invoices generated by the subscription schedule.
AccountTaxIDs []*TaxID `json:"account_tax_ids"`
// Number of days within which a customer must pay invoices generated by this subscription schedule. This value will be `null` for subscription schedules where `billing=charge_automatically`.
DaysUntilDue int64 `json:"days_until_due"`
Issuer *QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettingsIssuer `json:"issuer"`
}
// The account (if any) the associated subscription's payments will be attributed to for tax reporting, and where funds from each payment will be transferred to for each of the subscription's invoices.
type QuotePreviewSubscriptionScheduleDefaultSettingsTransferData struct {
// A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice total that will be transferred to the destination account. By default, the entire amount is transferred to the destination.
AmountPercent float64 `json:"amount_percent"`
// The account where funds from the payment will be transferred to upon payment success.
Destination *Account `json:"destination"`
}
type QuotePreviewSubscriptionScheduleDefaultSettings struct {
// A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice total that will be transferred to the application owner's Stripe account during this phase of the schedule.
ApplicationFeePercent float64 `json:"application_fee_percent"`
AutomaticTax *QuotePreviewSubscriptionScheduleDefaultSettingsAutomaticTax `json:"automatic_tax"`
// Possible values are `phase_start` or `automatic`. If `phase_start` then billing cycle anchor of the subscription is set to the start of the phase when entering the phase. If `automatic` then the billing cycle anchor is automatically modified as needed when entering the phase. For more information, see the billing cycle [documentation](https://stripe.com/docs/billing/subscriptions/billing-cycle).
BillingCycleAnchor QuotePreviewSubscriptionScheduleDefaultSettingsBillingCycleAnchor `json:"billing_cycle_anchor"`
// Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period
BillingThresholds *QuotePreviewSubscriptionScheduleDefaultSettingsBillingThresholds `json:"billing_thresholds"`
// Either `charge_automatically`, or `send_invoice`. When charging automatically, Stripe will attempt to pay the underlying subscription at the end of each billing cycle using the default source attached to the customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions and mark the subscription as `active`.
CollectionMethod QuotePreviewSubscriptionScheduleDefaultSettingsCollectionMethod `json:"collection_method"`
// ID of the default payment method for the subscription schedule. If not set, invoices will use the default payment method in the customer's invoice settings.
DefaultPaymentMethod *PaymentMethod `json:"default_payment_method"`
// Subscription description, meant to be displayable to the customer. Use this field to optionally store an explanation of the subscription for rendering in Stripe surfaces and certain local payment methods UIs.
Description string `json:"description"`
InvoiceSettings *QuotePreviewSubscriptionScheduleDefaultSettingsInvoiceSettings `json:"invoice_settings"`
// The account (if any) the charge was made on behalf of for charges associated with the schedule's subscription. See the Connect documentation for details.
OnBehalfOf *Account `json:"on_behalf_of"`
// The account (if any) the associated subscription's payments will be attributed to for tax reporting, and where funds from each payment will be transferred to for each of the subscription's invoices.
TransferData *QuotePreviewSubscriptionScheduleDefaultSettingsTransferData `json:"transfer_data"`
}
// The involved price pairs in each failed transition.
type QuotePreviewSubscriptionScheduleLastPriceMigrationErrorFailedTransition struct {
// The original price to be migrated.
SourcePrice string `json:"source_price"`
// The intended resulting price of the migration.
TargetPrice string `json:"target_price"`
}
// Details of the most recent price migration that failed for the subscription schedule.
type QuotePreviewSubscriptionScheduleLastPriceMigrationError struct {
// The time at which the price migration encountered an error.
ErroredAt int64 `json:"errored_at"`
// The involved price pairs in each failed transition.
FailedTransitions []*QuotePreviewSubscriptionScheduleLastPriceMigrationErrorFailedTransition `json:"failed_transitions"`
// The type of error encountered by the price migration.
Type QuotePreviewSubscriptionScheduleLastPriceMigrationErrorType `json:"type"`
}
// Details to determine how long the discount should be applied for.
type QuotePreviewSubscriptionSchedulePhaseAddInvoiceItemDiscountDiscountEnd struct {
// The discount end timestamp.
Timestamp int64 `json:"timestamp"`
// The discount end type.
Type QuotePreviewSubscriptionSchedulePhaseAddInvoiceItemDiscountDiscountEndType `json:"type"`
}
// The stackable discounts that will be applied to the item.
type QuotePreviewSubscriptionSchedulePhaseAddInvoiceItemDiscount struct {
// ID of the coupon to create a new discount for.
Coupon *Coupon `json:"coupon"`
// ID of an existing discount on the object (or one of its ancestors) to reuse.
Discount *Discount `json:"discount"`
// Details to determine how long the discount should be applied for.
DiscountEnd *QuotePreviewSubscriptionSchedulePhaseAddInvoiceItemDiscountDiscountEnd `json:"discount_end"`
// ID of the promotion code to create a new discount for.
PromotionCode *PromotionCode `json:"promotion_code"`
}
// A list of prices and quantities that will generate invoice items appended to the next invoice for this phase.
type QuotePreviewSubscriptionSchedulePhaseAddInvoiceItem struct {
// The stackable discounts that will be applied to the item.
Discounts []*QuotePreviewSubscriptionSchedulePhaseAddInvoiceItemDiscount `json:"discounts"`
// ID of the price used to generate the invoice item.
Price *Price `json:"price"`
// The quantity of the invoice item.
Quantity int64 `json:"quantity"`
// The tax rates which apply to the item. When set, the `default_tax_rates` do not apply to this item.
TaxRates []*TaxRate `json:"tax_rates"`
}
// The account that's liable for tax. If set, the business address and tax registrations required to perform the tax calculation are loaded from this account. The tax transaction is returned in the report of the connected account.
type QuotePreviewSubscriptionSchedulePhaseAutomaticTaxLiability struct {
// The connected account being referenced when `type` is `account`.
Account *Account `json:"account"`
// Type of the account referenced.
Type QuotePreviewSubscriptionSchedulePhaseAutomaticTaxLiabilityType `json:"type"`
}
type QuotePreviewSubscriptionSchedulePhaseAutomaticTax struct {
// Whether Stripe automatically computes tax on invoices created during this phase.
Enabled bool `json:"enabled"`
// The account that's liable for tax. If set, the business address and tax registrations required to perform the tax calculation are loaded from this account. The tax transaction is returned in the report of the connected account.
Liability *QuotePreviewSubscriptionSchedulePhaseAutomaticTaxLiability `json:"liability"`
}
// Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period
type QuotePreviewSubscriptionSchedulePhaseBillingThresholds struct {
// Monetary threshold that triggers the subscription to create an invoice
AmountGTE int64 `json:"amount_gte"`
// Indicates if the `billing_cycle_anchor` should be reset when a threshold is reached. If true, `billing_cycle_anchor` will be updated to the date/time the threshold was last reached; otherwise, the value will remain unchanged. This value may not be `true` if the subscription contains items with plans that have `aggregate_usage=last_ever`.
ResetBillingCycleAnchor bool `json:"reset_billing_cycle_anchor"`
}
// Details to determine how long the discount should be applied for.
type QuotePreviewSubscriptionSchedulePhaseDiscountDiscountEnd struct {
// The discount end timestamp.
Timestamp int64 `json:"timestamp"`
// The discount end type.
Type QuotePreviewSubscriptionSchedulePhaseDiscountDiscountEndType `json:"type"`
}
// The stackable discounts that will be applied to the subscription on this phase. Subscription item discounts are applied before subscription discounts.
type QuotePreviewSubscriptionSchedulePhaseDiscount struct {
// ID of the coupon to create a new discount for.
Coupon *Coupon `json:"coupon"`
// ID of an existing discount on the object (or one of its ancestors) to reuse.
Discount *Discount `json:"discount"`
// Details to determine how long the discount should be applied for.
DiscountEnd *QuotePreviewSubscriptionSchedulePhaseDiscountDiscountEnd `json:"discount_end"`
// ID of the promotion code to create a new discount for.
PromotionCode *PromotionCode `json:"promotion_code"`
}
// The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
type QuotePreviewSubscriptionSchedulePhaseInvoiceSettingsIssuer struct {
// The connected account being referenced when `type` is `account`.
Account *Account `json:"account"`
// Type of the account referenced.
Type QuotePreviewSubscriptionSchedulePhaseInvoiceSettingsIssuerType `json:"type"`
}
// The invoice settings applicable during this phase.
type QuotePreviewSubscriptionSchedulePhaseInvoiceSettings struct {
// The account tax IDs associated with this phase of the subscription schedule. Will be set on invoices generated by this phase of the subscription schedule.
AccountTaxIDs []*TaxID `json:"account_tax_ids"`
// Number of days within which a customer must pay invoices generated by this subscription schedule. This value will be `null` for subscription schedules where `billing=charge_automatically`.
DaysUntilDue int64 `json:"days_until_due"`
// The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
Issuer *QuotePreviewSubscriptionSchedulePhaseInvoiceSettingsIssuer `json:"issuer"`
}
// Define thresholds at which an invoice will be sent, and the related subscription advanced to a new billing period
type QuotePreviewSubscriptionSchedulePhaseItemBillingThresholds struct {
// Usage threshold that triggers the subscription to create an invoice
UsageGTE int64 `json:"usage_gte"`
}
// Details to determine how long the discount should be applied for.
type QuotePreviewSubscriptionSchedulePhaseItemDiscountDiscountEnd struct {
// The discount end timestamp.
Timestamp int64 `json:"timestamp"`
// The discount end type.
Type QuotePreviewSubscriptionSchedulePhaseItemDiscountDiscountEndType `json:"type"`
}
// The discounts applied to the subscription item. Subscription item discounts are applied before subscription discounts. Use `expand[]=discounts` to expand each discount.
type QuotePreviewSubscriptionSchedulePhaseItemDiscount struct {
// ID of the coupon to create a new discount for.
Coupon *Coupon `json:"coupon"`
// ID of an existing discount on the object (or one of its ancestors) to reuse.
Discount *Discount `json:"discount"`
// Details to determine how long the discount should be applied for.
DiscountEnd *QuotePreviewSubscriptionSchedulePhaseItemDiscountDiscountEnd `json:"discount_end"`
// ID of the promotion code to create a new discount for.
PromotionCode *PromotionCode `json:"promotion_code"`
}
// Options that configure the trial on the subscription item.
type QuotePreviewSubscriptionSchedulePhaseItemTrial struct {
// List of price IDs which, if present on the subscription following a paid trial, constitute opting-in to the paid trial.
ConvertsTo []string `json:"converts_to"`
// Determines the type of trial for this item.
Type QuotePreviewSubscriptionSchedulePhaseItemTrialType `json:"type"`
}
// Subscription items to configure the subscription to during this phase of the subscription schedule.
type QuotePreviewSubscriptionSchedulePhaseItem struct {
// Define thresholds at which an invoice will be sent, and the related subscription advanced to a new billing period
BillingThresholds *QuotePreviewSubscriptionSchedulePhaseItemBillingThresholds `json:"billing_thresholds"`
// The discounts applied to the subscription item. Subscription item discounts are applied before subscription discounts. Use `expand[]=discounts` to expand each discount.
Discounts []*QuotePreviewSubscriptionSchedulePhaseItemDiscount `json:"discounts"`
// Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an item. Metadata on this item will update the underlying subscription item's `metadata` when the phase is entered.
Metadata map[string]string `json:"metadata"`
// ID of the plan to which the customer should be subscribed.
Plan *Plan `json:"plan"`
// ID of the price to which the customer should be subscribed.
Price *Price `json:"price"`
// Quantity of the plan to which the customer should be subscribed.
Quantity int64 `json:"quantity"`
// The tax rates which apply to this `phase_item`. When set, the `default_tax_rates` on the phase do not apply to this `phase_item`.
TaxRates []*TaxRate `json:"tax_rates"`
// Options that configure the trial on the subscription item.
Trial *QuotePreviewSubscriptionSchedulePhaseItemTrial `json:"trial"`
}
// If specified, payment collection for this subscription will be paused. Note that the subscription status will be unchanged and will not be updated to `paused`. Learn more about [pausing collection](https://stripe.com/billing/subscriptions/pause-payment).
type QuotePreviewSubscriptionSchedulePhasePauseCollection struct {
// The payment collection behavior for this subscription while paused. One of `keep_as_draft`, `mark_uncollectible`, or `void`.
Behavior QuotePreviewSubscriptionSchedulePhasePauseCollectionBehavior `json:"behavior"`
}
// The account (if any) the associated subscription's payments will be attributed to for tax reporting, and where funds from each payment will be transferred to for each of the subscription's invoices.
type QuotePreviewSubscriptionSchedulePhaseTransferData struct {
// A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice total that will be transferred to the destination account. By default, the entire amount is transferred to the destination.
AmountPercent float64 `json:"amount_percent"`
// The account where funds from the payment will be transferred to upon payment success.
Destination *Account `json:"destination"`
}
// Defines how the subscription should behave when a trial ends.
type QuotePreviewSubscriptionSchedulePhaseTrialSettingsEndBehavior struct {
// Configure how an opt-in following a paid trial is billed when using `billing_behavior: prorate_up_front`.
ProrateUpFront QuotePreviewSubscriptionSchedulePhaseTrialSettingsEndBehaviorProrateUpFront `json:"prorate_up_front"`
}
// Settings related to any trials on the subscription during this phase.
type QuotePreviewSubscriptionSchedulePhaseTrialSettings struct {
// Defines how the subscription should behave when a trial ends.
EndBehavior *QuotePreviewSubscriptionSchedulePhaseTrialSettingsEndBehavior `json:"end_behavior"`
}
// Configuration for the subscription schedule's phases.
type QuotePreviewSubscriptionSchedulePhase struct {
// A list of prices and quantities that will generate invoice items appended to the next invoice for this phase.
AddInvoiceItems []*QuotePreviewSubscriptionSchedulePhaseAddInvoiceItem `json:"add_invoice_items"`
// A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice total that will be transferred to the application owner's Stripe account during this phase of the schedule.
ApplicationFeePercent float64 `json:"application_fee_percent"`
AutomaticTax *QuotePreviewSubscriptionSchedulePhaseAutomaticTax `json:"automatic_tax"`
// Possible values are `phase_start` or `automatic`. If `phase_start` then billing cycle anchor of the subscription is set to the start of the phase when entering the phase. If `automatic` then the billing cycle anchor is automatically modified as needed when entering the phase. For more information, see the billing cycle [documentation](https://stripe.com/docs/billing/subscriptions/billing-cycle).
BillingCycleAnchor QuotePreviewSubscriptionSchedulePhaseBillingCycleAnchor `json:"billing_cycle_anchor"`
// Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period
BillingThresholds *QuotePreviewSubscriptionSchedulePhaseBillingThresholds `json:"billing_thresholds"`
// Either `charge_automatically`, or `send_invoice`. When charging automatically, Stripe will attempt to pay the underlying subscription at the end of each billing cycle using the default source attached to the customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions and mark the subscription as `active`.
CollectionMethod QuotePreviewSubscriptionSchedulePhaseCollectionMethod `json:"collection_method"`
// ID of the coupon to use during this phase of the subscription schedule.
Coupon *Coupon `json:"coupon"`
// Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
Currency Currency `json:"currency"`
// ID of the default payment method for the subscription schedule. It must belong to the customer associated with the subscription schedule. If not set, invoices will use the default payment method in the customer's invoice settings.
DefaultPaymentMethod *PaymentMethod `json:"default_payment_method"`
// The default tax rates to apply to the subscription during this phase of the subscription schedule.
DefaultTaxRates []*TaxRate `json:"default_tax_rates"`
// Subscription description, meant to be displayable to the customer. Use this field to optionally store an explanation of the subscription for rendering in Stripe surfaces and certain local payment methods UIs.
Description string `json:"description"`
// The stackable discounts that will be applied to the subscription on this phase. Subscription item discounts are applied before subscription discounts.
Discounts []*QuotePreviewSubscriptionSchedulePhaseDiscount `json:"discounts"`
// The end of this phase of the subscription schedule.
EndDate int64 `json:"end_date"`
// The invoice settings applicable during this phase.
InvoiceSettings *QuotePreviewSubscriptionSchedulePhaseInvoiceSettings `json:"invoice_settings"`
// Subscription items to configure the subscription to during this phase of the subscription schedule.
Items []*QuotePreviewSubscriptionSchedulePhaseItem `json:"items"`
// Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to a phase. Metadata on a schedule's phase will update the underlying subscription's `metadata` when the phase is entered. Updating the underlying subscription's `metadata` directly will not affect the current phase's `metadata`.
Metadata map[string]string `json:"metadata"`
// The account (if any) the charge was made on behalf of for charges associated with the schedule's subscription. See the Connect documentation for details.
OnBehalfOf *Account `json:"on_behalf_of"`
// If specified, payment collection for this subscription will be paused. Note that the subscription status will be unchanged and will not be updated to `paused`. Learn more about [pausing collection](https://stripe.com/billing/subscriptions/pause-payment).
PauseCollection *QuotePreviewSubscriptionSchedulePhasePauseCollection `json:"pause_collection"`
// If the subscription schedule will prorate when transitioning to this phase. Possible values are `create_prorations` and `none`.
ProrationBehavior QuotePreviewSubscriptionSchedulePhaseProrationBehavior `json:"proration_behavior"`
// The start of this phase of the subscription schedule.
StartDate int64 `json:"start_date"`
// The account (if any) the associated subscription's payments will be attributed to for tax reporting, and where funds from each payment will be transferred to for each of the subscription's invoices.
TransferData *QuotePreviewSubscriptionSchedulePhaseTransferData `json:"transfer_data"`
// Specify behavior of the trial when crossing schedule phase boundaries
TrialContinuation QuotePreviewSubscriptionSchedulePhaseTrialContinuation `json:"trial_continuation"`
// When the trial ends within the phase.
TrialEnd int64 `json:"trial_end"`
// Settings related to any trials on the subscription during this phase.
TrialSettings *QuotePreviewSubscriptionSchedulePhaseTrialSettings `json:"trial_settings"`
}
// Time period and invoice for a Subscription billed in advance.
type QuotePreviewSubscriptionSchedulePrebilling struct {
// ID of the prebilling invoice.
Invoice *Invoice `json:"invoice"`
// The end of the last period for which the invoice pre-bills.
PeriodEnd int64 `json:"period_end"`
// The start of the first period for which the invoice pre-bills.
PeriodStart int64 `json:"period_start"`
// Whether to cancel or preserve `prebilling` if the subscription is updated during the prebilled period.
UpdateBehavior QuotePreviewSubscriptionSchedulePrebillingUpdateBehavior `json:"update_behavior"`
}
type QuotePreviewSubscriptionSchedule struct {
// ID of the Connect Application that created the schedule.
Application *Application `json:"application"`
AppliesTo *QuotePreviewSubscriptionScheduleAppliesTo `json:"applies_to"`
// Configures when the subscription schedule generates prorations for phase transitions. Possible values are `prorate_on_next_phase` or `prorate_up_front` with the default being `prorate_on_next_phase`. `prorate_on_next_phase` will apply phase changes and generate prorations at transition time. `prorate_up_front` will bill for all phases within the current billing cycle up front.
BillingBehavior QuotePreviewSubscriptionScheduleBillingBehavior `json:"billing_behavior"`
// Time at which the subscription schedule was canceled. Measured in seconds since the Unix epoch.
CanceledAt int64 `json:"canceled_at"`
// Time at which the subscription schedule was completed. Measured in seconds since the Unix epoch.
CompletedAt int64 `json:"completed_at"`
// Time at which the object was created. Measured in seconds since the Unix epoch.
Created int64 `json:"created"`
// Object representing the start and end dates for the current phase of the subscription schedule, if it is `active`.
CurrentPhase *QuotePreviewSubscriptionScheduleCurrentPhase `json:"current_phase"`
// ID of the customer who owns the subscription schedule.
Customer *Customer `json:"customer"`
DefaultSettings *QuotePreviewSubscriptionScheduleDefaultSettings `json:"default_settings"`
// Behavior of the subscription schedule and underlying subscription when it ends. Possible values are `release` or `cancel` with the default being `release`. `release` will end the subscription schedule and keep the underlying subscription running. `cancel` will end the subscription schedule and cancel the underlying subscription.
EndBehavior QuotePreviewSubscriptionScheduleEndBehavior `json:"end_behavior"`
// Unique identifier for the object.
ID string `json:"id"`
// Details of the most recent price migration that failed for the subscription schedule.
LastPriceMigrationError *QuotePreviewSubscriptionScheduleLastPriceMigrationError `json:"last_price_migration_error"`
// Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
Livemode bool `json:"livemode"`
// Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
Metadata map[string]string `json:"metadata"`
// String representing the object's type. Objects of the same type share the same value.
Object string `json:"object"`
// Configuration for the subscription schedule's phases.
Phases []*QuotePreviewSubscriptionSchedulePhase `json:"phases"`
// Time period and invoice for a Subscription billed in advance.
Prebilling *QuotePreviewSubscriptionSchedulePrebilling `json:"prebilling"`
// Time at which the subscription schedule was released. Measured in seconds since the Unix epoch.
ReleasedAt int64 `json:"released_at"`
// ID of the subscription once managed by the subscription schedule (if it is released).
ReleasedSubscription string `json:"released_subscription"`
// The present status of the subscription schedule. Possible values are `not_started`, `active`, `completed`, `released`, and `canceled`. You can read more about the different states in our [behavior guide](https://stripe.com/docs/billing/subscriptions/subscription-schedules).
Status QuotePreviewSubscriptionScheduleStatus `json:"status"`
// ID of the subscription managed by the subscription schedule.
Subscription *Subscription `json:"subscription"`
// ID of the test clock this subscription schedule belongs to.
TestClock *TestHelpersTestClock `json:"test_clock"`
}
// QuotePreviewSubscriptionScheduleList is a list of QuotePreviewSubscriptionSchedules as retrieved from a list endpoint.
type QuotePreviewSubscriptionScheduleList struct {
APIResource
ListMeta
Data []*QuotePreviewSubscriptionSchedule `json:"data"`
}