@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
27 lines • 858 B
TypeScript
import { CountryEnum } from './location/CountryEnum';
import { OfferEnum } from './location/OfferEnum';
import { StatusEnum } from './location/StatusEnum';
/** Local SEO locations */
export interface Location {
/** Account id */
accountId?: number;
/** Address of the location */
address?: string;
/** Country of the location */
country: CountryEnum;
/** Date of the installation of the location */
creationDate: string;
/** Location id */
id: number;
/** Date of the last location's update */
lastUpdate: string;
/** Name of the location */
name?: string;
/** Local SEO offer for this location */
offer: OfferEnum;
/** Current status of the location */
status: StatusEnum;
/** Running task associated to the location */
taskId?: number;
}
//# sourceMappingURL=Location.d.ts.map