/// <summary> /// Sets the SellerSkus property. /// </summary> /// <param name="sellerSkus">SellerSkus property.</param> /// <returns>this instance.</returns> public ListInventorySupplyRequest WithSellerSkus(SellerSkuList sellerSkus) { this._sellerSkus = sellerSkus; return this; }
public override void ReadFragmentFrom(IMwsReader reader) { this._sellerId = reader.Read<string>("SellerId"); this._mwsAuthToken = reader.Read<string>("MWSAuthToken"); this._marketplace = reader.Read<string>("Marketplace"); this._supplyRegion = reader.Read<string>("SupplyRegion"); this._sellerSkus = reader.Read<SellerSkuList>("SellerSkus"); this._queryStartDateTime = reader.Read<DateTime?>("QueryStartDateTime"); this._responseGroup = reader.Read<string>("ResponseGroup"); }