@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 516 B
TypeScript
import { CountryEnum } from '../nichandle/CountryEnum';
/** Missing description */
export interface ContactAddress {
/** City */
city?: string;
/** Country */
country?: CountryEnum;
/** Address line 1 */
line1?: string;
/** Address line 2 */
line2?: string;
/** Address line 3 */
line3?: string;
/** Others details */
otherDetails?: string;
/** Province */
province?: string;
/** Zip code */
zip?: string;
}
//# sourceMappingURL=ContactAddress.d.ts.map