import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EcommerceStore, EcommerceStore$Outbound } from "./ecommercestore.js"; /** * Stores */ export type GetStoreResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; /** * Apideck ID of service provider */ service: string; /** * Unified API resource name */ resource: string; /** * Operation performed */ operation: string; data: EcommerceStore; }; /** @internal */ export declare const GetStoreResponse$inboundSchema: z.ZodType; /** @internal */ export type GetStoreResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: EcommerceStore$Outbound; }; /** @internal */ export declare const GetStoreResponse$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 GetStoreResponse$ { /** @deprecated use `GetStoreResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetStoreResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetStoreResponse$Outbound` instead. */ type Outbound = GetStoreResponse$Outbound; } export declare function getStoreResponseToJSON(getStoreResponse: GetStoreResponse): string; export declare function getStoreResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getstoreresponse.d.ts.map