import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { GetBatchIdentityItem, GetBatchIdentityItem$Outbound } from "./getbatchidentityitem.js"; /** * Response body for the V3 Batch Get Identities API. */ export type V3BatchGetIdentitiesResponse = { /** * A pagination token for callers that have more identities left to return. Pass this back in directly to the Get Batch API with the startKey query parameter to get the next page of results. */ lastKey?: string | undefined; /** * The list of identity IDs associated with the client. */ results: Array; }; /** @internal */ export declare const V3BatchGetIdentitiesResponse$inboundSchema: z.ZodType; /** @internal */ export type V3BatchGetIdentitiesResponse$Outbound = { lastKey?: string | undefined; results: Array; }; /** @internal */ export declare const V3BatchGetIdentitiesResponse$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 V3BatchGetIdentitiesResponse$ { /** @deprecated use `V3BatchGetIdentitiesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3BatchGetIdentitiesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3BatchGetIdentitiesResponse$Outbound` instead. */ type Outbound = V3BatchGetIdentitiesResponse$Outbound; } export declare function v3BatchGetIdentitiesResponseToJSON(v3BatchGetIdentitiesResponse: V3BatchGetIdentitiesResponse): string; export declare function v3BatchGetIdentitiesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3batchgetidentitiesresponse.d.ts.map