Variable CloverPaymentIntegrationSchemaConst
CloverPaymentIntegrationSchema: ZodObject<
{
access_token: ZodString;
merchantId: ZodString;
refresh_token: ZodString;
access_token_expiration: ZodNumber;
refresh_token_expiration: ZodNumber;
enabled: ZodDefault<ZodBoolean>;
},
"strip",
ZodTypeAny,
{
access_token: string;
merchantId: string;
refresh_token: string;
access_token_expiration: number;
refresh_token_expiration: number;
enabled: boolean;
},
{
access_token: string;
merchantId: string;
refresh_token: string;
access_token_expiration: number;
refresh_token_expiration: number;
enabled?: boolean;
},
> = ...
Schema for Clover payment integration configuration Contains authentication tokens and merchant settings