diff --git a/VpSharp/src/Entities/VirtualParadiseModelObjectBuilder.cs b/VpSharp/src/Entities/VirtualParadiseModelObjectBuilder.cs
index d2f79e6..27f3d08 100644
--- a/VpSharp/src/Entities/VirtualParadiseModelObjectBuilder.cs
+++ b/VpSharp/src/Entities/VirtualParadiseModelObjectBuilder.cs
@@ -1,5 +1,4 @@
-using System.Numerics;
-using VpSharp.Internal;
+using VpSharp.Internal;
using static VpSharp.Internal.NativeAttributes.StringAttribute;
using static VpSharp.Internal.NativeMethods;
@@ -37,41 +36,6 @@ public sealed class VirtualParadiseModelObjectBuilder : VirtualParadiseObjectBui
/// The value of this object's Model field, or to leave unchanged.
public Optional Model { get; set; }
- ///
- /// Sets the value of this object's Action field.
- ///
- /// The new value of the Action field, or to leave unchanged.
- /// The current instance of this builder.
- public VirtualParadiseModelObjectBuilder WithAction(Optional action)
- {
- Action = action;
- return this;
- }
-
- ///
- /// Sets the value of this object's Description field.
- ///
- ///
- /// The new value of the Description field, or to leave unchanged.
- ///
- /// The current instance of this builder.
- public VirtualParadiseModelObjectBuilder WithDescription(Optional description)
- {
- Description = description;
- return this;
- }
-
- ///
- /// Sets the value of this object's Model field.
- ///
- /// The new value of the Model field, or to leave unchanged.
- /// The current instance of this builder.
- public VirtualParadiseModelObjectBuilder WithModel(Optional model)
- {
- Model = model;
- return this;
- }
-
internal override void ApplyChanges()
{
base.ApplyChanges();