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 TestingAccountPhoneGetSecurity = { apiKey: string; }; export type TestingAccountPhoneGetRequest = { /** * The publicly shareable identifier used to identify your Bolt merchant division. */ xPublishableKey: string; }; export type TestingAccountPhoneGetResponse = { /** * HTTP response content type for this operation */ contentType: string; /** * HTTP response status code for this operation */ statusCode: number; /** * Raw HTTP response; suitable for custom response parsing */ rawResponse: Response; /** * Successfully generated a random, fictitious, unassigned phone number. */ accountTestPhoneData?: components.AccountTestPhoneData | undefined; }; /** @internal */ export declare const TestingAccountPhoneGetSecurity$inboundSchema: z.ZodType; /** @internal */ export type TestingAccountPhoneGetSecurity$Outbound = { "api-key": string; }; /** @internal */ export declare const TestingAccountPhoneGetSecurity$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 TestingAccountPhoneGetSecurity$ { /** @deprecated use `TestingAccountPhoneGetSecurity$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TestingAccountPhoneGetSecurity$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TestingAccountPhoneGetSecurity$Outbound` instead. */ type Outbound = TestingAccountPhoneGetSecurity$Outbound; } export declare function testingAccountPhoneGetSecurityToJSON(testingAccountPhoneGetSecurity: TestingAccountPhoneGetSecurity): string; export declare function testingAccountPhoneGetSecurityFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TestingAccountPhoneGetRequest$inboundSchema: z.ZodType; /** @internal */ export type TestingAccountPhoneGetRequest$Outbound = { "X-Publishable-Key": string; }; /** @internal */ export declare const TestingAccountPhoneGetRequest$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 TestingAccountPhoneGetRequest$ { /** @deprecated use `TestingAccountPhoneGetRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TestingAccountPhoneGetRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TestingAccountPhoneGetRequest$Outbound` instead. */ type Outbound = TestingAccountPhoneGetRequest$Outbound; } export declare function testingAccountPhoneGetRequestToJSON(testingAccountPhoneGetRequest: TestingAccountPhoneGetRequest): string; export declare function testingAccountPhoneGetRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TestingAccountPhoneGetResponse$inboundSchema: z.ZodType; /** @internal */ export type TestingAccountPhoneGetResponse$Outbound = { ContentType: string; StatusCode: number; RawResponse: never; "account-test-phone-data"?: components.AccountTestPhoneData$Outbound | undefined; }; /** @internal */ export declare const TestingAccountPhoneGetResponse$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 TestingAccountPhoneGetResponse$ { /** @deprecated use `TestingAccountPhoneGetResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TestingAccountPhoneGetResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TestingAccountPhoneGetResponse$Outbound` instead. */ type Outbound = TestingAccountPhoneGetResponse$Outbound; } export declare function testingAccountPhoneGetResponseToJSON(testingAccountPhoneGetResponse: TestingAccountPhoneGetResponse): string; export declare function testingAccountPhoneGetResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=testingaccountphoneget.d.ts.map