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