/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type PazeTransactionValue = { /** * ISO 4217 currency code of the transaction. */ transactionCurrency: string; /** * Amount of the transaction including dollar and cents, e.g. '99.95'. */ transactionAmount: string; }; /** @internal */ export type PazeTransactionValue$Outbound = { transactionCurrency: string; transactionAmount: string; }; /** @internal */ export const PazeTransactionValue$outboundSchema: z.ZodType< PazeTransactionValue$Outbound, z.ZodTypeDef, PazeTransactionValue > = z.object({ transactionCurrency: z.string(), transactionAmount: z.string(), }); export function pazeTransactionValueToJSON( pazeTransactionValue: PazeTransactionValue, ): string { return JSON.stringify( PazeTransactionValue$outboundSchema.parse(pazeTransactionValue), ); }