public SnsObjectOpRequest.Builder SetOpList(int index, SnsObjectOp.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.opList_[index] = builderForValue.Build();
     return(this);
 }
 public SnsObjectOpRequest.Builder AddOpList(SnsObjectOp.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.opList_.Add(builderForValue.Build());
     return(this);
 }