import * as z from "zod/v3"; export type AssetWebpropertyListInputBody = { /** * RFC3339 Timestamp to view all requested webproperties at a specific point in time. Must be a valid RFC3339 string. Ensure that you suffix the date with T00:00:00Z or a specific time */ atTime?: Date | undefined; /** * A list of web property identifiers. */ webpropertyIds: Array | null; }; /** @internal */ export type AssetWebpropertyListInputBody$Outbound = { at_time?: string | undefined; webproperty_ids: Array | null; }; /** @internal */ export declare const AssetWebpropertyListInputBody$outboundSchema: z.ZodType; export declare function assetWebpropertyListInputBodyToJSON(assetWebpropertyListInputBody: AssetWebpropertyListInputBody): string; //# sourceMappingURL=assetwebpropertylistinputbody.d.ts.map