import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TerminateServiceRequest = { id: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type TerminateServiceResponse = components.ComputeService | components.ComputeErrorEnvelope; /** @internal */ export declare const TerminateServiceRequest$inboundSchema: z.ZodType; /** @internal */ export type TerminateServiceRequest$Outbound = { id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const TerminateServiceRequest$outboundSchema: z.ZodType; export declare function terminateServiceRequestToJSON(terminateServiceRequest: TerminateServiceRequest): string; export declare function terminateServiceRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TerminateServiceResponse$inboundSchema: z.ZodType; /** @internal */ export type TerminateServiceResponse$Outbound = components.ComputeService$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const TerminateServiceResponse$outboundSchema: z.ZodType; export declare function terminateServiceResponseToJSON(terminateServiceResponse: TerminateServiceResponse): string; export declare function terminateServiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=terminateservice.d.ts.map