PaymentIntegrationSchema: ZodObject<
    {
        orderTypeId: ZodString;
        verboseName: ZodString;
        merchantId: ZodString;
        privateKey: ZodOptional<ZodString>;
        ecommPrivateKey: ZodOptional<ZodString>;
        checkoutSecret: ZodOptional<ZodString>;
        tax_rate_uuid: ZodOptional<ZodString>;
        access_token: ZodString;
        refresh_token: ZodString;
        access_token_expiration: ZodNumber;
        refresh_token_expiration: ZodNumber;
    },
    "strip",
    ZodTypeAny,
    {
        orderTypeId: string;
        verboseName: string;
        merchantId: string;
        privateKey?: string;
        ecommPrivateKey?: string;
        checkoutSecret?: string;
        tax_rate_uuid?: string;
        access_token: string;
        refresh_token: string;
        access_token_expiration: number;
        refresh_token_expiration: number;
    },
    {
        orderTypeId: string;
        verboseName: string;
        merchantId: string;
        privateKey?: string;
        ecommPrivateKey?: string;
        checkoutSecret?: string;
        tax_rate_uuid?: string;
        access_token: string;
        refresh_token: string;
        access_token_expiration: number;
        refresh_token_expiration: number;
    },
> = ...