import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomMappings, CustomMappings$Outbound } from "./custommappings.js"; export type EcommerceStore = { /** * A unique identifier for an object. */ id: string; /** * The store's name */ name?: string | null | undefined; /** * The store's website URL */ storeUrl?: string | null | undefined; /** * The store's admin login URL */ adminUrl?: string | null | undefined; /** * When custom mappings are configured on the resource, the result is included here. */ customMappings?: CustomMappings | null | undefined; /** * The date and time when the object was created. */ createdAt?: Date | null | undefined; /** * The date and time when the object was last updated. */ updatedAt?: Date | null | undefined; }; /** @internal */ export declare const EcommerceStore$inboundSchema: z.ZodType; /** @internal */ export type EcommerceStore$Outbound = { id: string; name?: string | null | undefined; store_url?: string | null | undefined; admin_url?: string | null | undefined; custom_mappings?: CustomMappings$Outbound | null | undefined; created_at?: string | null | undefined; updated_at?: string | null | undefined; }; /** @internal */ export declare const EcommerceStore$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 EcommerceStore$ { /** @deprecated use `EcommerceStore$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EcommerceStore$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EcommerceStore$Outbound` instead. */ type Outbound = EcommerceStore$Outbound; } export declare function ecommerceStoreToJSON(ecommerceStore: EcommerceStore): string; export declare function ecommerceStoreFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ecommercestore.d.ts.map