import * as z from "zod"; export type UpdateTopicTimestampRequestBody = { timestamp: string; }; export type UpdateTopicTimestampRequest = { apiKey: string; apiUsername: string; requestBody?: UpdateTopicTimestampRequestBody | undefined; id: string; }; /** * topic updated */ export type UpdateTopicTimestampResponseBody = { success?: string | undefined; }; /** @internal */ export declare const UpdateTopicTimestampRequestBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateTopicTimestampRequestBody$Outbound = { timestamp: string; }; /** @internal */ export declare const UpdateTopicTimestampRequestBody$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 UpdateTopicTimestampRequestBody$ { /** @deprecated use `UpdateTopicTimestampRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateTopicTimestampRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateTopicTimestampRequestBody$Outbound` instead. */ type Outbound = UpdateTopicTimestampRequestBody$Outbound; } /** @internal */ export declare const UpdateTopicTimestampRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateTopicTimestampRequest$Outbound = { "Api-Key": string; "Api-Username": string; RequestBody?: UpdateTopicTimestampRequestBody$Outbound | undefined; id: string; }; /** @internal */ export declare const UpdateTopicTimestampRequest$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 UpdateTopicTimestampRequest$ { /** @deprecated use `UpdateTopicTimestampRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateTopicTimestampRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateTopicTimestampRequest$Outbound` instead. */ type Outbound = UpdateTopicTimestampRequest$Outbound; } /** @internal */ export declare const UpdateTopicTimestampResponseBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateTopicTimestampResponseBody$Outbound = { success?: string | undefined; }; /** @internal */ export declare const UpdateTopicTimestampResponseBody$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 UpdateTopicTimestampResponseBody$ { /** @deprecated use `UpdateTopicTimestampResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateTopicTimestampResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateTopicTimestampResponseBody$Outbound` instead. */ type Outbound = UpdateTopicTimestampResponseBody$Outbound; } //# sourceMappingURL=updatetopictimestamp.d.ts.map