node-ovh-ts
Version:
OVH API wrapper library for TypeScript
16 lines (13 loc) • 545 B
TypeScript
import { Partner2PartnerTypeEnum } from './Partner2PartnerTypeEnum.js';
import { NichandleCountryEnum } from './NichandleCountryEnum.js';
import { Partner2EmployeesNumberEnum } from './Partner2EmployeesNumberEnum.js';
type Partner2Account = {
city?: string | null;
companyTurnover?: number | null;
country?: NichandleCountryEnum | null;
name: string;
numberOfEmployees?: Partner2EmployeesNumberEnum | null;
partnerType?: Partner2PartnerTypeEnum | null;
yearEstablished?: Date | null;
};
export { Partner2Account };