import { APIResource } from "../../../resource.js"; import * as Core from "../../../core.js"; export declare class Results extends APIResource { /** * Get the Latest Scan Result * * @example * ```ts * const result = await client.cloudforceOne.scans.results.get( * 'config_id', * { account_id: 'account_id' }, * ); * ``` */ get(configId: string, params: ResultGetParams, options?: Core.RequestOptions): Core.APIPromise; } export interface ScanResult { number?: number; proto?: string; status?: string; } export interface ResultGetResponse { '1.1.1.1': Array; } export interface ResultGetParams { /** * Defines the Account ID. */ account_id: string; } export declare namespace Results { export { type ScanResult as ScanResult, type ResultGetResponse as ResultGetResponse, type ResultGetParams as ResultGetParams, }; } //# sourceMappingURL=results.d.ts.map