import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthStartRequestSubjectUserClaim = { /** * Provided if true, registers the user ID with a device, otherwise it valids the user ID. */ provided?: boolean | undefined; /** * UserID is a user identifier generated on the customer side to be associated with a device. * * @remarks * Acceptable characters are: alphanumeric with symbols '-._+=/:'. */ userId: string; }; /** @internal */ export declare const AuthStartRequestSubjectUserClaim$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestSubjectUserClaim$Outbound = { provided?: boolean | undefined; userId: string; }; /** @internal */ export declare const AuthStartRequestSubjectUserClaim$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 AuthStartRequestSubjectUserClaim$ { /** @deprecated use `AuthStartRequestSubjectUserClaim$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectUserClaim$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestSubjectUserClaim$Outbound` instead. */ type Outbound = AuthStartRequestSubjectUserClaim$Outbound; } export declare function authStartRequestSubjectUserClaimToJSON(authStartRequestSubjectUserClaim: AuthStartRequestSubjectUserClaim): string; export declare function authStartRequestSubjectUserClaimFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestsubjectuserclaim.d.ts.map