/// <summary>Retrieve a table category.</summary>
        public PITableCategory Get(string webId, string selectedFields = null)
        {
            ApiResponsePITableCategory localVarResponse = GetWithHttpInfo(webId, selectedFields);

            return(localVarResponse.Data);
        }
        /// <summary>Retrieve a table category by path.</summary>
        public PITableCategory GetByPath(string path, string selectedFields = null)
        {
            ApiResponsePITableCategory localVarResponse = GetByPathWithHttpInfo(path, selectedFields);

            return(localVarResponse.Data);
        }