public static IEnumerable <Asset> GetAssetsFromJson(this IRecordsManagerClient rmClient, string json)
        {
            var page = rmClient.GetAssetsWithPageDataFromJson(json);

            return(page.Items);
        }