import * as z from "zod"; export type ListGroupMembersRequest = { /** * Use group name instead of id */ id: string; }; export type Members = { addedAt: string; avatarTemplate: string; id: number; lastPostedAt: string; lastSeenAt: string; name: string | null; timezone: string; title: string | null; username: string; }; export type Meta = { limit: number; offset: number; total: number; }; export type Owners = { addedAt: string; avatarTemplate: string; id: number; lastPostedAt: string; lastSeenAt: string; name: string | null; timezone: string; title: string | null; username: string; }; /** * success response */ export type ListGroupMembersResponseBody = { members: Array; meta: Meta; owners: Array; }; /** @internal */ export declare const ListGroupMembersRequest$inboundSchema: z.ZodType; /** @internal */ export type ListGroupMembersRequest$Outbound = { id: string; }; /** @internal */ export declare const ListGroupMembersRequest$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 ListGroupMembersRequest$ { /** @deprecated use `ListGroupMembersRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListGroupMembersRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListGroupMembersRequest$Outbound` instead. */ type Outbound = ListGroupMembersRequest$Outbound; } /** @internal */ export declare const Members$inboundSchema: z.ZodType; /** @internal */ export type Members$Outbound = { added_at: string; avatar_template: string; id: number; last_posted_at: string; last_seen_at: string; name: string | null; timezone: string; title: string | null; username: string; }; /** @internal */ export declare const Members$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 Members$ { /** @deprecated use `Members$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Members$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Members$Outbound` instead. */ type Outbound = Members$Outbound; } /** @internal */ export declare const Meta$inboundSchema: z.ZodType; /** @internal */ export type Meta$Outbound = { limit: number; offset: number; total: number; }; /** @internal */ export declare const Meta$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 Meta$ { /** @deprecated use `Meta$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Meta$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Meta$Outbound` instead. */ type Outbound = Meta$Outbound; } /** @internal */ export declare const Owners$inboundSchema: z.ZodType; /** @internal */ export type Owners$Outbound = { added_at: string; avatar_template: string; id: number; last_posted_at: string; last_seen_at: string; name: string | null; timezone: string; title: string | null; username: string; }; /** @internal */ export declare const Owners$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 Owners$ { /** @deprecated use `Owners$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Owners$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Owners$Outbound` instead. */ type Outbound = Owners$Outbound; } /** @internal */ export declare const ListGroupMembersResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ListGroupMembersResponseBody$Outbound = { members: Array; meta: Meta$Outbound; owners: Array; }; /** @internal */ export declare const ListGroupMembersResponseBody$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 ListGroupMembersResponseBody$ { /** @deprecated use `ListGroupMembersResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListGroupMembersResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListGroupMembersResponseBody$Outbound` instead. */ type Outbound = ListGroupMembersResponseBody$Outbound; } //# sourceMappingURL=listgroupmembers.d.ts.map