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