/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type GetRbacRoleRequest = { /** * Role ID */ id: string; }; /** @internal */ export type GetRbacRoleRequest$Outbound = { id: string; }; /** @internal */ export const GetRbacRoleRequest$outboundSchema: z.ZodMiniType< GetRbacRoleRequest$Outbound, GetRbacRoleRequest > = z.object({ id: z.string(), }); export function getRbacRoleRequestToJSON( getRbacRoleRequest: GetRbacRoleRequest, ): string { return JSON.stringify( GetRbacRoleRequest$outboundSchema.parse(getRbacRoleRequest), ); }