import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BenefitType } from "./benefittype.js"; export type BenefitPublic = { /** * The ID of the benefit. */ id: string; /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; type: BenefitType; /** * The description of the benefit. */ description: string; /** * Whether the benefit is selectable when creating a product. */ selectable: boolean; /** * Whether the benefit is deletable. */ deletable: boolean; /** * Whether the benefit is deleted. */ isDeleted: boolean; /** * The ID of the organization owning the benefit. */ organizationId: string; }; /** @internal */ export declare const BenefitPublic$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitPublic$Outbound = { id: string; created_at: string; modified_at: string | null; type: string; description: string; selectable: boolean; deletable: boolean; is_deleted: boolean; organization_id: string; }; /** @internal */ export declare const BenefitPublic$outboundSchema: z.ZodMiniType; export declare function benefitPublicToJSON(benefitPublic: BenefitPublic): string; export declare function benefitPublicFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitpublic.d.ts.map