import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MultistreamTargetInput = { name?: string | undefined; /** * Livepeer-compatible multistream target URL (RTMP(S) or SRT) */ url: string; /** * If true then this multistream target will not be used for pushing * * @remarks * even if it is configured in a stream object. */ disabled?: boolean | undefined; }; /** @internal */ export declare const MultistreamTargetInput$inboundSchema: z.ZodType; /** @internal */ export type MultistreamTargetInput$Outbound = { name?: string | undefined; url: string; disabled?: boolean | undefined; }; /** @internal */ export declare const MultistreamTargetInput$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 MultistreamTargetInput$ { /** @deprecated use `MultistreamTargetInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MultistreamTargetInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MultistreamTargetInput$Outbound` instead. */ type Outbound = MultistreamTargetInput$Outbound; } export declare function multistreamTargetInputToJSON(multistreamTargetInput: MultistreamTargetInput): string; export declare function multistreamTargetInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=multistreamtargetinput.d.ts.map