import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3BatchGetIdentitiesRequest = { /** * A client-generated unique ID for a specific session. This can be used to identify specific requests. The format of this ID is defined by the client - Prove recommends using a GUID, but any format can be accepted. Do not include Personally Identifiable Information (PII) in this field. */ clientRequestId?: string | undefined; /** * The maximum number of identities to return per call. Default value is 100. */ limit?: number | undefined; /** * The pagination token for the GET /v3/identity API. Use this to retrieve the next page of results after a previous call to GET /v3/identity. This token is returned as lastKey in the GET /v3/identity API response - pass it in directly as startKey to get the next page of results. */ startKey?: string | undefined; /** * Whether to show identities associated with the current client that are currently marked as inactive. Default value is false. */ showInactive?: boolean | undefined; }; export type V3BatchGetIdentitiesResponse = { httpMeta: components.HTTPMetadata; /** * V3BatchGetIdentitiesResponse */ v3BatchGetIdentitiesResponse?: components.V3BatchGetIdentitiesResponse | undefined; }; /** @internal */ export declare const V3BatchGetIdentitiesRequest$inboundSchema: z.ZodType; /** @internal */ export type V3BatchGetIdentitiesRequest$Outbound = { clientRequestId?: string | undefined; limit?: number | undefined; startKey?: string | undefined; showInactive?: boolean | undefined; }; /** @internal */ export declare const V3BatchGetIdentitiesRequest$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 V3BatchGetIdentitiesRequest$ { /** @deprecated use `V3BatchGetIdentitiesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3BatchGetIdentitiesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3BatchGetIdentitiesRequest$Outbound` instead. */ type Outbound = V3BatchGetIdentitiesRequest$Outbound; } export declare function v3BatchGetIdentitiesRequestToJSON(v3BatchGetIdentitiesRequest: V3BatchGetIdentitiesRequest): string; export declare function v3BatchGetIdentitiesRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const V3BatchGetIdentitiesResponse$inboundSchema: z.ZodType; /** @internal */ export type V3BatchGetIdentitiesResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3BatchGetIdentitiesResponse?: components.V3BatchGetIdentitiesResponse$Outbound | undefined; }; /** @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=v3batchgetidentities.d.ts.map