import * as z from "zod"; export type SuspendUserRequestBody = { /** * Will send an email with this message when present */ message?: string | undefined; postAction?: string | undefined; reason: string; suspendUntil: string; }; export type SuspendUserRequest = { requestBody?: SuspendUserRequestBody | undefined; id: number; }; export type SuspendedBy = { avatarTemplate: string; id: number; name: string; username: string; }; export type Suspension = { fullSuspendReason: string; suspendReason: string; suspendedAt: string; suspendedBy: SuspendedBy; suspendedTill: string; }; /** * response */ export type SuspendUserResponseBody = { suspension: Suspension; }; /** @internal */ export declare const SuspendUserRequestBody$inboundSchema: z.ZodType; /** @internal */ export type SuspendUserRequestBody$Outbound = { message?: string | undefined; post_action?: string | undefined; reason: string; suspend_until: string; }; /** @internal */ export declare const SuspendUserRequestBody$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 SuspendUserRequestBody$ { /** @deprecated use `SuspendUserRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SuspendUserRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SuspendUserRequestBody$Outbound` instead. */ type Outbound = SuspendUserRequestBody$Outbound; } /** @internal */ export declare const SuspendUserRequest$inboundSchema: z.ZodType; /** @internal */ export type SuspendUserRequest$Outbound = { RequestBody?: SuspendUserRequestBody$Outbound | undefined; id: number; }; /** @internal */ export declare const SuspendUserRequest$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 SuspendUserRequest$ { /** @deprecated use `SuspendUserRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SuspendUserRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SuspendUserRequest$Outbound` instead. */ type Outbound = SuspendUserRequest$Outbound; } /** @internal */ export declare const SuspendedBy$inboundSchema: z.ZodType; /** @internal */ export type SuspendedBy$Outbound = { avatar_template: string; id: number; name: string; username: string; }; /** @internal */ export declare const SuspendedBy$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 SuspendedBy$ { /** @deprecated use `SuspendedBy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SuspendedBy$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SuspendedBy$Outbound` instead. */ type Outbound = SuspendedBy$Outbound; } /** @internal */ export declare const Suspension$inboundSchema: z.ZodType; /** @internal */ export type Suspension$Outbound = { full_suspend_reason: string; suspend_reason: string; suspended_at: string; suspended_by: SuspendedBy$Outbound; suspended_till: string; }; /** @internal */ export declare const Suspension$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 Suspension$ { /** @deprecated use `Suspension$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Suspension$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Suspension$Outbound` instead. */ type Outbound = Suspension$Outbound; } /** @internal */ export declare const SuspendUserResponseBody$inboundSchema: z.ZodType; /** @internal */ export type SuspendUserResponseBody$Outbound = { suspension: Suspension$Outbound; }; /** @internal */ export declare const SuspendUserResponseBody$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 SuspendUserResponseBody$ { /** @deprecated use `SuspendUserResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SuspendUserResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SuspendUserResponseBody$Outbound` instead. */ type Outbound = SuspendUserResponseBody$Outbound; } //# sourceMappingURL=suspenduser.d.ts.map