/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type UpdateRequestBody6 = { /** * 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 UpdateRequestBody6$inboundSchema: z.ZodType< UpdateRequestBody6, z.ZodTypeDef, unknown > = z.object({ description: z.string(), instructions: z.string(), name: z.string(), shortform: z.string(), }); /** @internal */ export type UpdateRequestBody6$Outbound = { description: string; instructions: string; name: string; shortform: string; }; /** @internal */ export const UpdateRequestBody6$outboundSchema: z.ZodType< UpdateRequestBody6$Outbound, z.ZodTypeDef, UpdateRequestBody6 > = 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 UpdateRequestBody6$ { /** @deprecated use `UpdateRequestBody6$inboundSchema` instead. */ export const inboundSchema = UpdateRequestBody6$inboundSchema; /** @deprecated use `UpdateRequestBody6$outboundSchema` instead. */ export const outboundSchema = UpdateRequestBody6$outboundSchema; /** @deprecated use `UpdateRequestBody6$Outbound` instead. */ export type Outbound = UpdateRequestBody6$Outbound; }