import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthStartRequestInstantAuthConsent = { /** * CollectedTimestamp is the date/time when original consent was collected by the client in ISO 8601 format. * * @remarks * Required if status = optedIn. */ collectedTimestamp?: string | undefined; /** * Description of the type of consent (electronic/paper), use case, and reference to the terms and conditions (T&C) * * @remarks * version (if applicable). Required if status = optedIn. * Acceptable characters are: alphanumeric with symbols '-._+=/'. */ description?: string | undefined; /** * Status denotes whether consent has been provided by the mobile subscriber for this transaction. Acceptable values * * @remarks * are: optedIn, optedOut, notCollected, unknown. */ status: string; /** * TransactionID uniquely identifies the consent collected by the client. Required if status = optedIn. * * @remarks * Acceptable characters are: alphanumeric with symbols '-._+=/'. */ transactionId?: string | undefined; }; /** @internal */ export declare const AuthStartRequestInstantAuthConsent$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestInstantAuthConsent$Outbound = { collectedTimestamp?: string | undefined; description?: string | undefined; status: string; transactionId?: string | undefined; }; /** @internal */ export declare const AuthStartRequestInstantAuthConsent$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 AuthStartRequestInstantAuthConsent$ { /** @deprecated use `AuthStartRequestInstantAuthConsent$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestInstantAuthConsent$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestInstantAuthConsent$Outbound` instead. */ type Outbound = AuthStartRequestInstantAuthConsent$Outbound; } export declare function authStartRequestInstantAuthConsentToJSON(authStartRequestInstantAuthConsent: AuthStartRequestInstantAuthConsent): string; export declare function authStartRequestInstantAuthConsentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestinstantauthconsent.d.ts.map