import { APIResource } from "../../core/resource.js"; import { APIPromise } from "../../core/api-promise.js"; import { RequestOptions } from "../../internal/request-options.js"; export declare class BaseActivationCheck extends APIResource { static readonly _key: readonly ['zones', 'activationCheck']; /** * Triggeres a new activation check for a PENDING Zone. This can be triggered every * 5 min for paygo/ent customers, every hour for FREE Zones. * * @example * ```ts * const response = await client.zones.activationCheck.trigger( * { zone_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ trigger(params: ActivationCheckTriggerParams, options?: RequestOptions): APIPromise; } export declare class ActivationCheck extends BaseActivationCheck { } export interface ActivationCheckTriggerResponse { /** * Identifier. */ id?: string; } export interface ActivationCheckTriggerParams { /** * Identifier. */ zone_id: string; } export declare namespace ActivationCheck { export { type ActivationCheckTriggerResponse as ActivationCheckTriggerResponse, type ActivationCheckTriggerParams as ActivationCheckTriggerParams, }; } //# sourceMappingURL=activation-check.d.ts.map