Beispiel #1
0
 public LowestOfferListingType(QualifiersType qualifiers, decimal sellerFeedbackCount, PriceType price, string multipleOffersAtLowestPrice) : base()
 {
     this._qualifiers          = qualifiers;
     this._sellerFeedbackCount = sellerFeedbackCount;
     this._price = price;
     this._multipleOffersAtLowestPrice = multipleOffersAtLowestPrice;
 }
Beispiel #2
0
 /// <summary>
 /// Sets the Price property.
 /// </summary>
 /// <param name="price">Price property.</param>
 /// <returns>this instance.</returns>
 public LowestOfferListingType WithPrice(PriceType price)
 {
     this._price = price;
     return(this);
 }
Beispiel #3
0
 /// <summary>
 /// Sets the Price property.
 /// </summary>
 /// <param name="price">Price property.</param>
 /// <returns>this instance.</returns>
 public CompetitivePriceType WithPrice(PriceType price)
 {
     this._price = price;
     return(this);
 }
Beispiel #4
0
 /// <summary>
 /// Sets the BuyingPrice property.
 /// </summary>
 /// <param name="buyingPrice">BuyingPrice property.</param>
 /// <returns>this instance.</returns>
 public OfferType WithBuyingPrice(PriceType buyingPrice)
 {
     this._buyingPrice = buyingPrice;
     return(this);
 }
Beispiel #5
0
 public CompetitivePriceType(string competitivePriceId, PriceType price) : base()
 {
     this._competitivePriceId = competitivePriceId;
     this._price = price;
 }