UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

19 lines (16 loc) 706 B
import { HostingWebLocalSeoLocationOfferEnum } from './HostingWebLocalSeoLocationOfferEnum.js'; import { HostingWebLocalSeoLocationStatusEnum } from './HostingWebLocalSeoLocationStatusEnum.js'; import { HostingWebLocalSeoLocationCountryEnum } from './HostingWebLocalSeoLocationCountryEnum.js'; type HostingWebLocalSeoLocation = { accountId?: number | null; address?: string | null; country?: HostingWebLocalSeoLocationCountryEnum; creationDate?: Date; id?: number; lastUpdate?: Date; name?: string | null; offer?: HostingWebLocalSeoLocationOfferEnum; status?: HostingWebLocalSeoLocationStatusEnum; taskId?: number | null; }; export { HostingWebLocalSeoLocation };