import { ObjectStateEnum } from './ObjectStateEnum';
import { PublicFolderRightTypeEnum } from './PublicFolderRightTypeEnum';
/** Exchange organization public folder permission */
export interface ExchangePublicFolderPermission {
    /** Access right set for the account */
    accessRights: PublicFolderRightTypeEnum;
    /** Account id */
    allowedAccountId: number;
    /** Creation date */
    creationDate: string;
    /**  */
    state: ObjectStateEnum;
    /** task pending id */
    taskPendingId: number;
}
//# sourceMappingURL=ExchangePublicFolderPermission.d.ts.map