/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Specifies the time frame for the velocity limit. Currently supports only per-transaction limits. */ export const IssuingIntervalLimit = { PerTransaction: "per-transaction", } as const; /** * Specifies the time frame for the velocity limit. Currently supports only per-transaction limits. */ export type IssuingIntervalLimit = ClosedEnum; /** @internal */ export const IssuingIntervalLimit$inboundSchema: z.ZodNativeEnum< typeof IssuingIntervalLimit > = z.nativeEnum(IssuingIntervalLimit); /** @internal */ export const IssuingIntervalLimit$outboundSchema: z.ZodNativeEnum< typeof IssuingIntervalLimit > = IssuingIntervalLimit$inboundSchema;