@@ -796,9 +796,6 @@ define_ok_modeling_cmd_response_enum! {
796
796
/// The response from the `EntityClone` command.
797
797
#[ derive( Debug , Serialize , Deserialize , Clone , JsonSchema , ModelingCmdOutput ) ]
798
798
pub struct EntityClone {
799
- /// The UUIDs of the entities that were created.
800
- #[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
801
- pub entity_ids: Vec <Uuid >,
802
799
/// The Face and Edge Ids of the cloned entity.
803
800
#[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
804
801
pub face_edge_ids: Vec <FaceEdgeInfo >,
@@ -807,9 +804,6 @@ define_ok_modeling_cmd_response_enum! {
807
804
/// The response from the `EntityLinearPatternTransform` command.
808
805
#[ derive( Debug , Serialize , Deserialize , Clone , JsonSchema , ModelingCmdOutput ) ]
809
806
pub struct EntityLinearPatternTransform {
810
- /// The UUIDs of the entities that were created.
811
- #[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
812
- pub entity_ids: Vec <Uuid >,
813
807
/// The Face, edge, and entity ids of the patterned entities.
814
808
#[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
815
809
pub entity_face_edge_ids: Vec <FaceEdgeInfo >,
@@ -818,9 +812,6 @@ define_ok_modeling_cmd_response_enum! {
818
812
/// The response from the `EntityLinearPattern` command.
819
813
#[ derive( Debug , Serialize , Deserialize , Clone , JsonSchema , ModelingCmdOutput ) ]
820
814
pub struct EntityLinearPattern {
821
- /// The UUIDs of the entities that were created.
822
- #[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
823
- pub entity_ids: Vec <Uuid >,
824
815
/// The Face, edge, and entity ids of the patterned entities.
825
816
#[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
826
817
pub entity_face_edge_ids: Vec <FaceEdgeInfo >,
@@ -829,9 +820,6 @@ define_ok_modeling_cmd_response_enum! {
829
820
/// The response from the `EntityCircularPattern` command.
830
821
#[ derive( Debug , Serialize , Deserialize , Clone , JsonSchema , ModelingCmdOutput ) ]
831
822
pub struct EntityCircularPattern {
832
- /// The UUIDs of the entities that were created.
833
- #[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
834
- pub entity_ids: Vec <Uuid >,
835
823
/// The Face, edge, and entity ids of the patterned entities.
836
824
#[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
837
825
pub entity_face_edge_ids: Vec <FaceEdgeInfo >,
@@ -840,9 +828,6 @@ define_ok_modeling_cmd_response_enum! {
840
828
/// The response from the `EntityMirror` endpoint.
841
829
#[ derive( Debug , Serialize , Deserialize , Clone , JsonSchema , ModelingCmdOutput ) ]
842
830
pub struct EntityMirror {
843
- /// The UUIDs of the entities that were created.
844
- #[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
845
- pub entity_ids: Vec <Uuid >,
846
831
/// The Face, edge, and entity ids of the patterned entities.
847
832
#[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
848
833
pub entity_face_edge_ids: Vec <FaceEdgeInfo >,
@@ -851,9 +836,6 @@ define_ok_modeling_cmd_response_enum! {
851
836
/// The response from the `EntityMirrorAcrossEdge` endpoint.
852
837
#[ derive( Debug , Serialize , Deserialize , Clone , JsonSchema , ModelingCmdOutput ) ]
853
838
pub struct EntityMirrorAcrossEdge {
854
- /// The UUIDs of the entities that were created.
855
- #[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
856
- pub entity_ids: Vec <Uuid >,
857
839
/// The Face, edge, and entity ids of the patterned entities.
858
840
#[ serde( default , skip_serializing_if = "Vec::is_empty" ) ]
859
841
pub entity_face_edge_ids: Vec <FaceEdgeInfo >,
0 commit comments