/// <summary>
        ///     Gets file plan information
        /// </summary>
        /// <param name="filePlanId">Id of fileplan. If null it will use default alias -filePlan-</param>
        /// <returns>FilePlanEntry information.</returns>
        public async Task <FilePlanEntry> GetFilePlan(string filePlanId = null)
        {
            filePlanId ??= AlfrescoNames.Aliases.FilePlan;

            return(await _alfrescoHttpClient.GetFilePlan(filePlanId));
        }