public override void ReadFragmentFrom(IMwsReader reader)
 {
     _asin = reader.Read <string>("ASIN");
     _barcodeInstruction  = reader.Read <string>("BarcodeInstruction");
     _prepGuidance        = reader.Read <string>("PrepGuidance");
     _prepInstructionList = reader.Read <PrepInstructionList>("PrepInstructionList");
 }
Exemplo n.º 2
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerSKU                 = reader.Read <string>("SellerSKU");
     _asin                      = reader.Read <string>("ASIN");
     _barcodeInstruction        = reader.Read <string>("BarcodeInstruction");
     _prepGuidance              = reader.Read <string>("PrepGuidance");
     _prepInstructionList       = reader.Read <PrepInstructionList>("PrepInstructionList");
     _amazonPrepFeesDetailsList = reader.Read <AmazonPrepFeesDetailsList>("AmazonPrepFeesDetailsList");
 }
Exemplo n.º 3
0
 /// <summary>
 /// Sets the PrepInstructionList property.
 /// </summary>
 /// <param name="prepInstructionList">PrepInstructionList property.</param>
 /// <returns>this instance.</returns>
 public SKUPrepInstructions WithPrepInstructionList(PrepInstructionList prepInstructionList)
 {
     this._prepInstructionList = prepInstructionList;
     return(this);
 }