/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { remap as remap$ } from "../../lib/primitives.js"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DiscountDuration, DiscountDuration$inboundSchema, } from "./discountduration.js"; import { DiscountProduct, DiscountProduct$inboundSchema, } from "./discountproduct.js"; import { DiscountType, DiscountType$inboundSchema } from "./discounttype.js"; import { MetadataOutputType, MetadataOutputType$inboundSchema, } from "./metadataoutputtype.js"; /** * Schema for a fixed amount discount that is applied on every invoice * * @remarks * for a certain number of months. */ export type DiscountFixedRepeatDuration = { duration: DiscountDuration; durationInMonths: number; type: DiscountType; /** * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. */ amount: number; /** * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. */ currency: string; /** * Map of currency to fixed amount to discount from the total. */ amounts: { [k: string]: number }; /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; /** * The ID of the object. */ id: string; metadata: { [k: string]: MetadataOutputType }; /** * Name of the discount. Will be displayed to the customer when the discount is applied. */ name: string; /** * Code customers can use to apply the discount during checkout. */ code: string | null; /** * Timestamp after which the discount is redeemable. */ startsAt: Date | null; /** * Timestamp after which the discount is no longer redeemable. */ endsAt: Date | null; /** * Maximum number of times the discount can be redeemed. */ maxRedemptions: number | null; /** * Number of times the discount has been redeemed. */ redemptionsCount: number; /** * The organization ID. */ organizationId: string; products: Array; }; /** @internal */ export const DiscountFixedRepeatDuration$inboundSchema: z.ZodMiniType< DiscountFixedRepeatDuration, unknown > = z.pipe( z.object({ duration: DiscountDuration$inboundSchema, duration_in_months: z.int(), type: DiscountType$inboundSchema, amount: z.int(), currency: z.string(), amounts: z.record(z.string(), z.int()), created_at: z.pipe( z.iso.datetime({ offset: true }), z.transform(v => new Date(v)), ), modified_at: z.nullable( z.pipe(z.iso.datetime({ offset: true }), z.transform(v => new Date(v))), ), id: z.string(), metadata: z.record(z.string(), MetadataOutputType$inboundSchema), name: z.string(), code: z.nullable(z.string()), starts_at: z.nullable( z.pipe(z.iso.datetime({ offset: true }), z.transform(v => new Date(v))), ), ends_at: z.nullable( z.pipe(z.iso.datetime({ offset: true }), z.transform(v => new Date(v))), ), max_redemptions: z.nullable(z.int()), redemptions_count: z.int(), organization_id: z.string(), products: z.array(DiscountProduct$inboundSchema), }), z.transform((v) => { return remap$(v, { "duration_in_months": "durationInMonths", "created_at": "createdAt", "modified_at": "modifiedAt", "starts_at": "startsAt", "ends_at": "endsAt", "max_redemptions": "maxRedemptions", "redemptions_count": "redemptionsCount", "organization_id": "organizationId", }); }), ); export function discountFixedRepeatDurationFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => DiscountFixedRepeatDuration$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'DiscountFixedRepeatDuration' from JSON`, ); }