import * as z from "zod"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The type of identifier */ export declare enum IdentifierUpdateType { IdentifierTypeUnspecified = "IDENTIFIER_TYPE_UNSPECIFIED", OriginatingAccountId = "ORIGINATING_ACCOUNT_ID", OriginatingFdid = "ORIGINATING_FDID", OriginatingCatReporterCrd = "ORIGINATING_CAT_REPORTER_CRD", ClientAccountId = "CLIENT_ACCOUNT_ID" } /** * The type of identifier */ export type IdentifierUpdateTypeOpen = OpenEnum; /** * An identifier associated with an account */ export type IdentifierUpdate = { /** * The type of identifier */ type?: IdentifierUpdateTypeOpen | undefined; }; /** @internal */ export declare const IdentifierUpdateType$inboundSchema: z.ZodType; /** @internal */ export declare const IdentifierUpdateType$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace IdentifierUpdateType$ { /** @deprecated use `IdentifierUpdateType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdentifierUpdateType$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const IdentifierUpdate$inboundSchema: z.ZodType; /** @internal */ export type IdentifierUpdate$Outbound = { type?: string | undefined; }; /** @internal */ export declare const IdentifierUpdate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace IdentifierUpdate$ { /** @deprecated use `IdentifierUpdate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdentifierUpdate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IdentifierUpdate$Outbound` instead. */ type Outbound = IdentifierUpdate$Outbound; } export declare function identifierUpdateToJSON(identifierUpdate: IdentifierUpdate): string; export declare function identifierUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=identifierupdate.d.ts.map