import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteServiceAccountRequest = { orgId: string; saId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** * OK */ export type DeleteServiceAccountResponseBody = { id: string; deleted: boolean; }; /** @internal */ export declare const DeleteServiceAccountRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteServiceAccountRequest$Outbound = { orgId: string; saId: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const DeleteServiceAccountRequest$outboundSchema: z.ZodType; export declare function deleteServiceAccountRequestToJSON(deleteServiceAccountRequest: DeleteServiceAccountRequest): string; export declare function deleteServiceAccountRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DeleteServiceAccountResponseBody$inboundSchema: z.ZodType; /** @internal */ export type DeleteServiceAccountResponseBody$Outbound = { id: string; deleted: boolean; }; /** @internal */ export declare const DeleteServiceAccountResponseBody$outboundSchema: z.ZodType; export declare function deleteServiceAccountResponseBodyToJSON(deleteServiceAccountResponseBody: DeleteServiceAccountResponseBody): string; export declare function deleteServiceAccountResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deleteserviceaccount.d.ts.map