/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type PazeCobrandItem = { /** * Product name of the cobrand card. Must match exactly with the card name from the network. */ name: string; /** * Whether benefits are offered for this cobrand card. */ benefitsOffered?: boolean | null | undefined; }; /** @internal */ export type PazeCobrandItem$Outbound = { name: string; benefitsOffered?: boolean | null | undefined; }; /** @internal */ export const PazeCobrandItem$outboundSchema: z.ZodType< PazeCobrandItem$Outbound, z.ZodTypeDef, PazeCobrandItem > = z.object({ name: z.string(), benefitsOffered: z.nullable(z.boolean()).optional(), }); export function pazeCobrandItemToJSON( pazeCobrandItem: PazeCobrandItem, ): string { return JSON.stringify(PazeCobrandItem$outboundSchema.parse(pazeCobrandItem)); }