/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type UpdateTargetAppDto = { /** * name of the target app */ name?: string | undefined; /** * a description of the target app */ description?: string | undefined; }; /** @internal */ export const UpdateTargetAppDto$inboundSchema: z.ZodType< UpdateTargetAppDto, z.ZodTypeDef, unknown > = z.object({ name: z.string().optional(), description: z.string().optional(), }); /** @internal */ export type UpdateTargetAppDto$Outbound = { name?: string | undefined; description?: string | undefined; }; /** @internal */ export const UpdateTargetAppDto$outboundSchema: z.ZodType< UpdateTargetAppDto$Outbound, z.ZodTypeDef, UpdateTargetAppDto > = z.object({ name: z.string().optional(), description: z.string().optional(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace UpdateTargetAppDto$ { /** @deprecated use `UpdateTargetAppDto$inboundSchema` instead. */ export const inboundSchema = UpdateTargetAppDto$inboundSchema; /** @deprecated use `UpdateTargetAppDto$outboundSchema` instead. */ export const outboundSchema = UpdateTargetAppDto$outboundSchema; /** @deprecated use `UpdateTargetAppDto$Outbound` instead. */ export type Outbound = UpdateTargetAppDto$Outbound; }