UNPKG

@unkey/api

Version:

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.

15 lines 862 B
import * as z from "zod/v3"; export type V2IdentitiesDeleteIdentityRequestBody = { /** * The ID of the identity to delete. This can be either the externalId (from your own system that was used during identity creation) or the identityId (the internal ID returned by the identity service). */ identity: string; }; /** @internal */ export type V2IdentitiesDeleteIdentityRequestBody$Outbound = { identity: string; }; /** @internal */ export declare const V2IdentitiesDeleteIdentityRequestBody$outboundSchema: z.ZodType<V2IdentitiesDeleteIdentityRequestBody$Outbound, z.ZodTypeDef, V2IdentitiesDeleteIdentityRequestBody>; export declare function v2IdentitiesDeleteIdentityRequestBodyToJSON(v2IdentitiesDeleteIdentityRequestBody: V2IdentitiesDeleteIdentityRequestBody): string; //# sourceMappingURL=v2identitiesdeleteidentityrequestbody.d.ts.map