import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type VaultCreateCallbackStateGlobals = { /** * ID of the consumer which you want to get or push data from */ consumerId?: string | undefined; /** * The ID of your Unify application */ appId?: string | undefined; }; export type VaultCreateCallbackStateRequest = { /** * Service ID of the resource to return */ serviceId: string; /** * Unified API */ unifiedApi: string; /** * Callback state data */ createCallbackState: components.CreateCallbackState; }; export type VaultCreateCallbackStateResponse = { httpMeta: components.HTTPMetadata; /** * Callback state created */ createCallbackStateResponse?: components.CreateCallbackStateResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultCreateCallbackStateGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultCreateCallbackStateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const VaultCreateCallbackStateGlobals$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 VaultCreateCallbackStateGlobals$ { /** @deprecated use `VaultCreateCallbackStateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultCreateCallbackStateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultCreateCallbackStateGlobals$Outbound` instead. */ type Outbound = VaultCreateCallbackStateGlobals$Outbound; } export declare function vaultCreateCallbackStateGlobalsToJSON(vaultCreateCallbackStateGlobals: VaultCreateCallbackStateGlobals): string; export declare function vaultCreateCallbackStateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultCreateCallbackStateRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultCreateCallbackStateRequest$Outbound = { service_id: string; unified_api: string; CreateCallbackState: components.CreateCallbackState$Outbound; }; /** @internal */ export declare const VaultCreateCallbackStateRequest$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 VaultCreateCallbackStateRequest$ { /** @deprecated use `VaultCreateCallbackStateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultCreateCallbackStateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultCreateCallbackStateRequest$Outbound` instead. */ type Outbound = VaultCreateCallbackStateRequest$Outbound; } export declare function vaultCreateCallbackStateRequestToJSON(vaultCreateCallbackStateRequest: VaultCreateCallbackStateRequest): string; export declare function vaultCreateCallbackStateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultCreateCallbackStateResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultCreateCallbackStateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; CreateCallbackStateResponse?: components.CreateCallbackStateResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultCreateCallbackStateResponse$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 VaultCreateCallbackStateResponse$ { /** @deprecated use `VaultCreateCallbackStateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultCreateCallbackStateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultCreateCallbackStateResponse$Outbound` instead. */ type Outbound = VaultCreateCallbackStateResponse$Outbound; } export declare function vaultCreateCallbackStateResponseToJSON(vaultCreateCallbackStateResponse: VaultCreateCallbackStateResponse): string; export declare function vaultCreateCallbackStateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultcreatecallbackstate.d.ts.map