import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PaymentProcessor } from "./paymentprocessor.js"; export type PaymentMethodGeneric = { /** * The ID of the object. */ id: string; /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; processor: PaymentProcessor; customerId: string; type: string; }; /** @internal */ export declare const PaymentMethodGeneric$inboundSchema: z.ZodMiniType; export declare function paymentMethodGenericFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethodgeneric.d.ts.map