public FeesEstimateRequest(string marketplaceId, string idType, string idValue, PriceToEstimateFees priceToEstimateFees, string identifier) : base() { this._marketplaceId = marketplaceId; this._idType = idType; this._idValue = idValue; this._priceToEstimateFees = priceToEstimateFees; this._identifier = identifier; }
public override void ReadFragmentFrom(IMwsReader reader) { _marketplaceId = reader.Read <string>("MarketplaceId"); _idType = reader.Read <string>("IdType"); _idValue = reader.Read <string>("IdValue"); _isAmazonFulfilled = reader.Read <bool?>("IsAmazonFulfilled"); _priceToEstimateFees = reader.Read <PriceToEstimateFees>("PriceToEstimateFees"); _identifier = reader.Read <string>("Identifier"); }
/// <summary> /// Sets the PriceToEstimateFees property. /// </summary> /// <param name="priceToEstimateFees">PriceToEstimateFees property.</param> /// <returns>this instance.</returns> public FeesEstimateIdentifier WithPriceToEstimateFees(PriceToEstimateFees priceToEstimateFees) { this._priceToEstimateFees = priceToEstimateFees; return(this); }
/// <summary> /// Sets the PriceToEstimateFees property. /// </summary> /// <param name="priceToEstimateFees">PriceToEstimateFees property.</param> /// <returns>this instance.</returns> public FeesEstimateRequest WithPriceToEstimateFees(PriceToEstimateFees priceToEstimateFees) { this._priceToEstimateFees = priceToEstimateFees; return(this); }