using System; using System.Collections.Generic; using System.Net.Http; using System.Threading; using System.Threading.Tasks; using BTCPayServer.Client.Models; namespace BTCPayServer.Client { public partial class BTCPayServerClient { public virtual async Task> GetStores(CancellationToken token = default) { var response = await _httpClient.SendAsync(CreateHttpRequest("api/v1/stores"), token); return await HandleResponse>(response); } public virtual async Task GetStore(string storeId, CancellationToken token = default) { var response = await _httpClient.SendAsync( CreateHttpRequest($"api/v1/stores/{storeId}"), token); return await HandleResponse(response); } public virtual async Task RemoveStore(string storeId, CancellationToken token = default) { var response = await _httpClient.SendAsync( CreateHttpRequest($"api/v1/stores/{storeId}", method: HttpMethod.Delete), token); await HandleResponse(response); } public virtual async Task CreateStore(CreateStoreRequest request, CancellationToken token = default) { if (request == null) throw new ArgumentNullException(nameof(request)); var response = await _httpClient.SendAsync(CreateHttpRequest("api/v1/stores", bodyPayload: request, method: HttpMethod.Post), token); return await HandleResponse(response); } public virtual async Task UpdateStore(string storeId, UpdateStoreRequest request, CancellationToken token = default) { if (request == null) throw new ArgumentNullException(nameof(request)); if (storeId == null) throw new ArgumentNullException(nameof(storeId)); var response = await _httpClient.SendAsync(CreateHttpRequest($"api/v1/stores/{storeId}", bodyPayload: request, method: HttpMethod.Put), token); return await HandleResponse(response); } } }