import { StatusEnum } from './hostedssl/StatusEnum';
/** Hostedssl */
export interface Ssl {
    /** If the hostedssl is currently bound to a report */
    isReportable: boolean;
    /** Provider of the HostedSsl */
    provider: string;
    /** Regenerable flag */
    regenerable: boolean;
    /** Status of the HostedSsl */
    status: StatusEnum;
    /** The task ID working on this HostedSsl */
    taskId?: number;
    /** Type of the HostedSsl */
    type: string;
}
//# sourceMappingURL=Ssl.d.ts.map