import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3GlobaldataAssetHostTimelineGlobals = { organizationId?: string | undefined; }; export type V3GlobaldataAssetHostTimelineRequest = { /** * The ID of a Censys organization to associate the request with. If omitted, the request will be processed using the authenticated user's free wallet where applicable. See the [Getting Started docs](https://docs.censys.com/reference/get-started#step-3-find-and-use-your-organization-id-optional) for more information. */ organizationId?: string | undefined; /** * The IP address of a host. */ hostId: string; /** * Start time of the host timeline. Equivalent to the To field in the event history UI. This must be the timestamp closest to the current time. For example, if you want events from January 1, 2025 to the start of January 2, 2025, input the January 2 timestamp here. Must be a valid RFC3339 string. Ensure that you suffix the date with T00:00:00Z or a specific time. */ startTime: Date; /** * End time of the host timeline. Equivalent to the From field in the event history UI. This must be the timestamp furthest from the current time. For example, if you want events from January 1, 2025 to the start of January 2, 2025, input the January 1 timestamp here. Must be a valid RFC3339 string. Ensure that you suffix the date with T00:00:00Z or a specific time. */ endTime: Date; }; export type V3GlobaldataAssetHostTimelineResponse = { headers: { [k: string]: Array; }; result: components.ResponseEnvelopeHostTimeline; }; /** @internal */ export type V3GlobaldataAssetHostTimelineRequest$Outbound = { organization_id?: string | undefined; host_id: string; start_time: string; end_time: string; }; /** @internal */ export declare const V3GlobaldataAssetHostTimelineRequest$outboundSchema: z.ZodType; export declare function v3GlobaldataAssetHostTimelineRequestToJSON(v3GlobaldataAssetHostTimelineRequest: V3GlobaldataAssetHostTimelineRequest): string; /** @internal */ export declare const V3GlobaldataAssetHostTimelineResponse$inboundSchema: z.ZodType; export declare function v3GlobaldataAssetHostTimelineResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3globaldataassethosttimeline.d.ts.map