import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomMappings, CustomMappings$Outbound } from "./custommappings.js"; export type CollectionUser = { /** * A unique identifier for an object. */ id?: string | null | undefined; /** * Full name of the user */ name?: string | null | undefined; /** * First name of the user */ firstName?: string | null | undefined; /** * Last name of the user */ lastName?: string | null | undefined; /** * Email address of the user */ email?: string | null | undefined; /** * The URL of the photo of a person. */ photoUrl?: string | null | undefined; /** * When custom mappings are configured on the resource, the result is included here. */ customMappings?: CustomMappings | null | undefined; /** * The date and time when the object was last updated. */ updatedAt?: Date | null | undefined; /** * The date and time when the object was created. */ createdAt?: Date | null | undefined; }; /** @internal */ export declare const CollectionUser$inboundSchema: z.ZodType; /** @internal */ export type CollectionUser$Outbound = { id?: string | null | undefined; name?: string | null | undefined; first_name?: string | null | undefined; last_name?: string | null | undefined; email?: string | null | undefined; photo_url?: string | null | undefined; custom_mappings?: CustomMappings$Outbound | null | undefined; updated_at?: string | null | undefined; created_at?: string | null | undefined; }; /** @internal */ export declare const CollectionUser$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 CollectionUser$ { /** @deprecated use `CollectionUser$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CollectionUser$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CollectionUser$Outbound` instead. */ type Outbound = CollectionUser$Outbound; } export declare function collectionUserToJSON(collectionUser: CollectionUser): string; export declare function collectionUserFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectionuser.d.ts.map