import { SharepointAccountAccessRightsEnum } from './SharepointAccountAccessRightsEnum';
import { SharepointLicenseEnum } from './SharepointLicenseEnum';
import { ObjectStateEnum } from './ObjectStateEnum';
/** Sharepoint account information */
export interface SharepointInformation {
    /** The rights assigned to the sharepoint account */
    accessRights: SharepointAccountAccessRightsEnum;
    /** Active Directory Account id */
    activeDirectoryAccountId: number;
    /** Indicates if the account is configured */
    configured: boolean;
    /** OneDrive usage in byte */
    currentUsage?: number;
    /** delete at expiration */
    deleteAtExpiration?: boolean;
    /** Sharepoint account id */
    id: number;
    /** Sharepoint account license */
    license: SharepointLicenseEnum;
    /** office license is available */
    officeLicense: boolean;
    /** OneDrive maximum size in byte */
    quota: number;
    /** Sharepoint account state */
    state: ObjectStateEnum;
    /** Pending task for this sharepoint account */
    taskPendingId: number;
}
//# sourceMappingURL=SharepointInformation.d.ts.map