@@ -2828,6 +2828,9 @@ export type PerSitePricingBillingProfile = {
28282828 state : string ;
28292829 zip : string ;
28302830 vat_number : null | string ;
2831+ /**
2832+ * Whether the subscription has been cancelled and all associated projects are frozen.
2833+ */
28312834 defaulting : boolean ;
28322835 defaulting_since : null | string ;
28332836 credits : number ;
@@ -2846,6 +2849,8 @@ export type PerSitePricingBillingProfileUpdateCreditCardTargetSchema =
28462849 PerSitePricingBillingProfile ;
28472850export type PerSitePricingBillingProfileUpdateInfoTargetSchema =
28482851 PerSitePricingBillingProfile ;
2852+ export type PerSitePricingBillingProfileCancelSubscriptionTargetSchema =
2853+ PerSitePricingBillingProfile ;
28492854export type PerSitePricingBillingProfileDestroyTargetSchema =
28502855 PerSitePricingBillingProfile ;
28512856/**
@@ -2871,6 +2876,9 @@ export type PerSitePricingBillingProfileAttributes = {
28712876 state : string ;
28722877 zip : string ;
28732878 vat_number : null | string ;
2879+ /**
2880+ * Whether the subscription has been cancelled and all associated projects are frozen.
2881+ */
28742882 defaulting : boolean ;
28752883 defaulting_since : null | string ;
28762884 credits : number ;
@@ -2920,6 +2928,14 @@ export type PerSitePricingBillingProfileUpdateInfoSchema = {
29202928 cf_cod_fiscale ?: null | string ;
29212929 } ;
29222930} ;
2931+ /**
2932+ * This interface was referenced by `PerSitePricingBillingProfile`'s JSON-Schema
2933+ * via the `cancel_subscription.schema` link.
2934+ */
2935+ export type PerSitePricingBillingProfileCancelSubscriptionSchema = {
2936+ type ?: 'per_site_pricing_billing_profile' ;
2937+ reason ?: string | null ;
2938+ } ;
29232939/**
29242940 * A billing profile
29252941 *
@@ -2945,6 +2961,9 @@ export type PerOwnerPricingBillingProfile = {
29452961 state : string ;
29462962 zip : string ;
29472963 vat_number : null | string ;
2964+ /**
2965+ * Whether the subscription has been cancelled and all associated projects are frozen.
2966+ */
29482967 defaulting : boolean ;
29492968 defaulting_since : null | string ;
29502969 credits : number ;
@@ -2961,6 +2980,8 @@ export type PerOwnerPricingBillingProfileUpdateCreditCardTargetSchema =
29612980 PerOwnerPricingBillingProfile ;
29622981export type PerOwnerPricingBillingProfileUpdateInfoTargetSchema =
29632982 PerOwnerPricingBillingProfile ;
2983+ export type PerOwnerPricingBillingProfileCancelSubscriptionTargetSchema =
2984+ PerOwnerPricingBillingProfile ;
29642985/**
29652986 * Billing profile info
29662987 *
@@ -2984,6 +3005,9 @@ export type PerOwnerPricingBillingProfileAttributes = {
29843005 state : string ;
29853006 zip : string ;
29863007 vat_number : null | string ;
3008+ /**
3009+ * Whether the subscription has been cancelled and all associated projects are frozen.
3010+ */
29873011 defaulting : boolean ;
29883012 defaulting_since : null | string ;
29893013 credits : number ;
@@ -3024,6 +3048,14 @@ export type PerOwnerPricingBillingProfileUpdateInfoSchema = {
30243048 po_number ?: null | string ;
30253049 } ;
30263050} ;
3051+ /**
3052+ * This interface was referenced by `PerOwnerPricingBillingProfile`'s JSON-Schema
3053+ * via the `cancel_subscription.schema` link.
3054+ */
3055+ export type PerOwnerPricingBillingProfileCancelSubscriptionSchema = {
3056+ type ?: 'per_owner_pricing_billing_profile' ;
3057+ reason ?: string | null ;
3058+ } ;
30273059/**
30283060 * An invoice
30293061 *
0 commit comments