node-ovh-ts
Version:
OVH API wrapper library for TypeScript
16 lines (14 loc) • 332 B
TypeScript
type MarketPlaceContact = {
city?: string | null;
country?: string | null;
email?: string;
firstname?: string;
id?: string;
lastname?: string;
phone?: string | null;
province?: string | null;
street?: string | null;
title?: string;
zip?: string | null;
};
export { MarketPlaceContact };