UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

79 lines 2.41 kB
import { CountryEnum } from './CountryEnum'; import { Currency } from './Currency'; import { LanguageEnum } from './LanguageEnum'; import { LegalFormEnum } from './LegalFormEnum'; import { OvhCompanyEnum } from './OvhCompanyEnum'; import { OvhSubsidiaryEnum } from './OvhSubsidiaryEnum'; import { PhoneTypeEnum } from './PhoneTypeEnum'; import { GenderEnum } from './GenderEnum'; import { StateEnum } from './StateEnum'; /** Details about your OVH identifier */ export interface Nichandle { /** Address of nichandle */ address?: string; /** Area of nichandle */ area?: string; /** City of birth */ birthCity?: string; /** Birth date */ birthDay?: string; /** City of nichandle */ city?: string; /** Company National Identification Number */ companyNationalIdentificationNumber?: string; /** Complementary Address */ complementaryAddress?: string; /** Corporation type */ corporationType?: string; /** Customer country */ country: CountryEnum; /** Customer currency */ currency: Currency; /** Your customer code (a numerical value used for identification when contacting support via phone call) */ customerCode?: string; /** Email address */ email: string; /** Fax number */ fax?: string; /** First name */ firstname?: string; /** Italian SDI */ italianSDI?: string; /** KYC validation state */ kycValidated?: boolean; /** Language */ language?: LanguageEnum; /** Customer legal form */ legalform: LegalFormEnum; /** Customer name */ name?: string; /** National Identification Number */ nationalIdentificationNumber?: string; /** Customer identifier */ nichandle: string; /** Name of organisation */ organisation?: string; /** OVH company */ ovhCompany: OvhCompanyEnum; /** OVH subsidiary */ ovhSubsidiary: OvhSubsidiaryEnum; /** Phone number */ phone?: string; /** */ phoneCountry?: CountryEnum; /** Type of phone(mobile, landline) */ phoneType?: PhoneTypeEnum; /** Customer purpose of purchase */ purposeOfPurchase?: string; /** Gender */ sex?: GenderEnum; /** Spare email */ spareEmail?: string; /** Nichandle state */ state: StateEnum; /** VAT number */ vat?: string; /** Zipcode */ zip?: string; } //# sourceMappingURL=Nichandle.d.ts.map