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