import * as z from "zod/v3"; export type NetworkTokenCreate = { /** * The 3 or 4 digit security code often found on the card. This often referred to as the CVV or CVD. */ securityCode?: string | null | undefined; /** * Defines if the request is merchant initiated or not. */ merchantInitiated: boolean; /** * Defines if the request is a subsequent of another request or not. */ isSubsequentPayment: boolean; }; /** @internal */ export type NetworkTokenCreate$Outbound = { security_code?: string | null | undefined; merchant_initiated: boolean; is_subsequent_payment: boolean; }; /** @internal */ export declare const NetworkTokenCreate$outboundSchema: z.ZodType; export declare function networkTokenCreateToJSON(networkTokenCreate: NetworkTokenCreate): string; //# sourceMappingURL=networktokencreate.d.ts.map