import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Consumer, Consumer$Outbound } from "./consumer.js"; /** * Consumer updated */ export type UpdateConsumerResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; data: Consumer; }; /** @internal */ export declare const UpdateConsumerResponse$inboundSchema: z.ZodType; /** @internal */ export type UpdateConsumerResponse$Outbound = { status_code: number; status: string; data: Consumer$Outbound; }; /** @internal */ export declare const UpdateConsumerResponse$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 UpdateConsumerResponse$ { /** @deprecated use `UpdateConsumerResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateConsumerResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateConsumerResponse$Outbound` instead. */ type Outbound = UpdateConsumerResponse$Outbound; } export declare function updateConsumerResponseToJSON(updateConsumerResponse: UpdateConsumerResponse): string; export declare function updateConsumerResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateconsumerresponse.d.ts.map