Beispiel #1
0
 public async Task GetListingWithIncludes(EtsyService etsyService)
 {
     var r = await etsyService.GetListingsById(new[] { _listingExample }, CancellationToken.None, ListingAssociationIncludes.ShippingInfo | ListingAssociationIncludes.Shop | ListingAssociationIncludes.Images).ToArrayAsync();
 }
Beispiel #2
0
 public async Task GetListingWithVariations(EtsyService etsyService)
 {
     var r = await etsyService.GetListingsById(new[] { _listingExample }, CancellationToken.None, ListingAssociationIncludes.Variations).ToArrayAsync();
 }
Beispiel #3
0
 public async Task GetListing(EtsyService etsyService)
 {
     var r = await etsyService.GetListingsById(new[] { _listingExample }).ToArrayAsync();
 }