import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthStartRequestDeliveryScanNotification = { /** * Body is the body of the scan QR message. */ body: string; /** * ConfirmButton is the text of the scan QR message confirm button. */ confirmBtn?: string | undefined; /** * DenyButton is the text of the scan QR message deny button. */ denyBtn?: string | undefined; /** * OriginatingDevice is the type of device where where the scan QR flow was initiated. */ originatingDevice?: string | undefined; /** * OriginatingIp is the IP address of the web client where the scan QR flow was initiated. */ originatingIp?: string | undefined; /** * Title is the title of the scan QR message. */ title: string; }; /** @internal */ export declare const AuthStartRequestDeliveryScanNotification$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestDeliveryScanNotification$Outbound = { body: string; confirmBtn?: string | undefined; denyBtn?: string | undefined; originatingDevice?: string | undefined; originatingIp?: string | undefined; title: string; }; /** @internal */ export declare const AuthStartRequestDeliveryScanNotification$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 AuthStartRequestDeliveryScanNotification$ { /** @deprecated use `AuthStartRequestDeliveryScanNotification$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestDeliveryScanNotification$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestDeliveryScanNotification$Outbound` instead. */ type Outbound = AuthStartRequestDeliveryScanNotification$Outbound; } export declare function authStartRequestDeliveryScanNotificationToJSON(authStartRequestDeliveryScanNotification: AuthStartRequestDeliveryScanNotification): string; export declare function authStartRequestDeliveryScanNotificationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestdeliveryscannotification.d.ts.map