/// <summary>
 /// Sets the ListParticipations property.
 /// </summary>
 /// <param name="listParticipations">ListParticipations property.</param>
 /// <returns>this instance.</returns>
 public ListMarketplaceParticipationsByNextTokenResult WithListParticipations(ListParticipations listParticipations)
 {
     this._listParticipations = listParticipations;
     return this;
 }
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     this._nextToken = reader.Read<string>("NextToken");
     this._listParticipations = reader.Read<ListParticipations>("ListParticipations");
     this._listMarketplaces = reader.Read<ListMarketplaces>("ListMarketplaces");
 }