@@ -543,6 +543,13 @@ export namespace Customer {
543543 */
544544 provider_type : 'stripe' ;
545545
546+ /**
547+ * The ID of a shared payment token granted by an agent to use as the default
548+ * payment instrument for this customer. When set, auto-collection will use this
549+ * token instead of the customer's default payment method.
550+ */
551+ default_shared_payment_token ?: string | null ;
552+
546553 /**
547554 * List of Stripe payment method types to exclude for this customer. Excluded
548555 * payment methods will not be available for the customer to select during payment,
@@ -902,6 +909,13 @@ export namespace CustomerCreateParams {
902909 */
903910 provider_type : 'stripe' ;
904911
912+ /**
913+ * The ID of a shared payment token granted by an agent to use as the default
914+ * payment instrument for this customer. When set, auto-collection will use this
915+ * token instead of the customer's default payment method.
916+ */
917+ default_shared_payment_token ?: string | null ;
918+
905919 /**
906920 * List of Stripe payment method types to exclude for this customer. Excluded
907921 * payment methods will not be available for the customer to select during payment,
@@ -1230,6 +1244,13 @@ export namespace CustomerUpdateParams {
12301244 */
12311245 provider_type : 'stripe' ;
12321246
1247+ /**
1248+ * The ID of a shared payment token granted by an agent to use as the default
1249+ * payment instrument for this customer. When set, auto-collection will use this
1250+ * token instead of the customer's default payment method.
1251+ */
1252+ default_shared_payment_token ?: string | null ;
1253+
12331254 /**
12341255 * List of Stripe payment method types to exclude for this customer. Excluded
12351256 * payment methods will not be available for the customer to select during payment,
@@ -1568,6 +1589,13 @@ export namespace CustomerUpdateByExternalIDParams {
15681589 */
15691590 provider_type : 'stripe' ;
15701591
1592+ /**
1593+ * The ID of a shared payment token granted by an agent to use as the default
1594+ * payment instrument for this customer. When set, auto-collection will use this
1595+ * token instead of the customer's default payment method.
1596+ */
1597+ default_shared_payment_token ?: string | null ;
1598+
15711599 /**
15721600 * List of Stripe payment method types to exclude for this customer. Excluded
15731601 * payment methods will not be available for the customer to select during payment,
0 commit comments