public GmailList.Builder SetList(int index, GmailInfo.Builder builderForValue) { ThrowHelper.ThrowIfNull(builderForValue, "builderForValue"); this.PrepareBuilder(); this.result.list_[index] = builderForValue.Build(); return(this); }
public GmailList.Builder AddList(GmailInfo.Builder builderForValue) { ThrowHelper.ThrowIfNull(builderForValue, "builderForValue"); this.PrepareBuilder(); this.result.list_.Add(builderForValue.Build()); return(this); }