public Avatar.Builder AddBlueprints(Blueprint.Builder builderForValue) { ThrowHelper.ThrowIfNull(builderForValue, "builderForValue"); this.PrepareBuilder(); this.result.blueprints_.Add(builderForValue.Build()); return(this); }
public Avatar.Builder SetBlueprints(int index, Blueprint.Builder builderForValue) { ThrowHelper.ThrowIfNull(builderForValue, "builderForValue"); this.PrepareBuilder(); this.result.blueprints_.set_Item(index, builderForValue.Build()); return(this); }