node-ovh-ts
Version:
OVH API wrapper library for TypeScript
33 lines (30 loc) • 1.13 kB
TypeScript
import { NichandleLanguageEnum } from './NichandleLanguageEnum.js';
import { MeContactAddress } from './MeContactAddress.js';
import { NichandleCountryEnum } from './NichandleCountryEnum.js';
import { NichandleLegalFormEnum } from './NichandleLegalFormEnum.js';
import { NichandleGenderEnum } from './NichandleGenderEnum.js';
type MeContactContact = {
address?: MeContactAddress;
birthCity?: string | null;
birthCountry?: NichandleCountryEnum | null;
birthDay?: Date | null;
birthZip?: string | null;
cellPhone?: string | null;
companyNationalIdentificationNumber?: string | null;
email?: string;
fax?: string | null;
firstName?: string;
gender?: NichandleGenderEnum | null;
id?: number;
language?: NichandleLanguageEnum;
lastName?: string;
legalForm?: NichandleLegalFormEnum;
nationalIdentificationNumber?: string | null;
nationality?: NichandleCountryEnum | null;
organisationName?: string | null;
organisationType?: string | null;
phone?: string | null;
spareEmail?: string | null;
vat?: string | null;
};
export { MeContactContact };