Variable StripePaymentIntegrationSchemaConst
StripePaymentIntegrationSchema: ZodObject<
{
taxRateId: ZodOptional<ZodString>;
account_id: ZodString;
accountType: ZodOptional<ZodString>;
enabled: ZodDefault<ZodBoolean>;
readers: ZodOptional<
ZodArray<
ZodObject<
{ id: ZodString; location: ZodString },
"strip",
ZodTypeAny,
{ id: string; location: string },
{ id: string; location: string },
>,
"many",
>,
>;
},
"strip",
ZodTypeAny,
{
taxRateId?: string;
account_id: string;
accountType?: string;
enabled: boolean;
readers?: { id: string; location: string }[];
},
{
taxRateId?: string;
account_id: string;
accountType?: string;
enabled?: boolean;
readers?: { id: string; location: string }[];
},
> = ...
Schema for Stripe payment integration configuration Contains account settings and device information