/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type CreateRequestBody8 = { /** * Describes the purpose of the role */ description: string; /** * Provided to whoever is nominated for the role. Note that this will be empty for the 'reporter' role. */ instructions: string; /** * Human readable name of the incident role */ name: string; /** * Short human readable name for Slack. Note that this will be empty for the 'reporter' role. */ shortform: string; }; /** @internal */ export const CreateRequestBody8$inboundSchema: z.ZodType< CreateRequestBody8, z.ZodTypeDef, unknown > = z.object({ description: z.string(), instructions: z.string(), name: z.string(), shortform: z.string(), }); /** @internal */ export type CreateRequestBody8$Outbound = { description: string; instructions: string; name: string; shortform: string; }; /** @internal */ export const CreateRequestBody8$outboundSchema: z.ZodType< CreateRequestBody8$Outbound, z.ZodTypeDef, CreateRequestBody8 > = z.object({ description: z.string(), instructions: z.string(), name: z.string(), shortform: z.string(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace CreateRequestBody8$ { /** @deprecated use `CreateRequestBody8$inboundSchema` instead. */ export const inboundSchema = CreateRequestBody8$inboundSchema; /** @deprecated use `CreateRequestBody8$outboundSchema` instead. */ export const outboundSchema = CreateRequestBody8$outboundSchema; /** @deprecated use `CreateRequestBody8$Outbound` instead. */ export type Outbound = CreateRequestBody8$Outbound; }