MarketplaceWebServiceProducts.Model.SellerSKUListType.WithSellerSKU C# (CSharp) Method

WithSellerSKU() public method

Sets the SellerSKU property
public WithSellerSKU ( ) : SellerSKUListType
return SellerSKUListType
        public SellerSKUListType WithSellerSKU(params String[] list)
        {
            foreach (String item in list)
            {
                SellerSKU.Add(item);
            }
            return this;
        }