import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BenefitDownloadablesProperties, BenefitDownloadablesProperties$Outbound } from "./benefitdownloadablesproperties.js"; import { MetadataOutputType, MetadataOutputType$Outbound } from "./metadataoutputtype.js"; export type BenefitDownloadables = { /** * The ID of the benefit. */ id: string; /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; type: "downloadables"; /** * 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; metadata: { [k: string]: MetadataOutputType; }; properties: BenefitDownloadablesProperties; }; /** @internal */ export declare const BenefitDownloadables$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitDownloadables$Outbound = { id: string; created_at: string; modified_at: string | null; type: "downloadables"; description: string; selectable: boolean; deletable: boolean; is_deleted: boolean; organization_id: string; metadata: { [k: string]: MetadataOutputType$Outbound; }; properties: BenefitDownloadablesProperties$Outbound; }; /** @internal */ export declare const BenefitDownloadables$outboundSchema: z.ZodMiniType; export declare function benefitDownloadablesToJSON(benefitDownloadables: BenefitDownloadables): string; export declare function benefitDownloadablesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitdownloadables.d.ts.map