public async Task <CollectionResult> GetDetail(String accessToken, Int32 collectionId,
                                                       Boolean autoCache = false)
        {
            var api    = new CollectionApi();
            var result = await api.GetDetailAsync(accessToken, collectionId, autoCache);

            return(result);
        }