import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OrganizationMember = { /** * The date and time the user was created. */ createdAt?: Date | undefined; /** * The email of the user. */ email: string; /** * The date and time the user first logged in. */ firstLoginTime?: Date | undefined; /** * The first name of the user. */ firstName: string; /** * The last name of the user. */ lastName: string; /** * The date and time the user last logged in. */ latestLoginTime?: Date | undefined; /** * The roles this member has in the organization. */ roles: Array | null; /** * The ID of a Censys user. */ uid: string; }; /** @internal */ export declare const OrganizationMember$inboundSchema: z.ZodType; export declare function organizationMemberFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=organizationmember.d.ts.map