@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
18 lines • 597 B
TypeScript
import { LicenseEnum } from '../officePrepaid/LicenseEnum';
import { CountryEnum } from '../officePrepaid/CountryEnum';
/** Office user */
export interface PostUserNative {
/** Office domain */
domain: string;
/** User's first name */
firstName: string;
/** User's last name */
lastName: string;
/** Licenses attributed to the user */
licence: LicenseEnum;
/** Account login */
login: string;
/** ISO 3166-1 alpha-2 country code where the user is using Office365 services */
usageLocation: CountryEnum;
}
//# sourceMappingURL=PostUserNative.d.ts.map