node-ovh-ts
Version:
OVH API wrapper library for TypeScript
15 lines (12 loc) • 356 B
TypeScript
import { ZoneRedirectionTypeEnum } from './ZoneRedirectionTypeEnum.js';
type DomainZoneRedirection = {
description?: string | null;
id?: number;
keywords?: string | null;
subDomain?: string | null;
target?: string;
title?: string | null;
type?: ZoneRedirectionTypeEnum;
zone?: string;
};
export { DomainZoneRedirection };