You are able to do way more from SpawnedModel class:
SpawnedModel class
public interface SpawnedModel {
Model getModel();
SpawnedModel matchFromLocation(Location location);
SpawnedModel matchFromHitbox(Interaction hitbox);
void despawn();
void rightClick(Player player);
}
And with Model class:
public interface Model {
public String getId();
public String getName();
public String getAuthor();
public String getVersion();
public String getDescription();
public ModelProperties getProperties(); // entity collision, block collision and model placeable item material
public ModelPartProperties getPartProperties(); // get part material, interaction, value & more
public ModelParameters getParameters(); // get args for colors
public SpawnedModel spawn(Location location, BlockFace rotation, PassedParameters params);
public SpawnedModel spawn(Location location, BlockFace rotation);
public SpawnedModel spawn(Location location, PassedParameters params);
public SpawnedModel spawn(Location location);
public String getGroup();
}