Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions modeling-cmds/src/ok_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -796,9 +796,6 @@ define_ok_modeling_cmd_response_enum! {
/// The response from the `EntityClone` command.
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
pub struct EntityClone {
/// The UUIDs of the entities that were created.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_ids: Vec<Uuid>,
/// The Face and Edge Ids of the cloned entity.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub face_edge_ids: Vec<FaceEdgeInfo>,
Expand All @@ -807,9 +804,6 @@ define_ok_modeling_cmd_response_enum! {
/// The response from the `EntityLinearPatternTransform` command.
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
pub struct EntityLinearPatternTransform {
/// The UUIDs of the entities that were created.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_ids: Vec<Uuid>,
/// The Face, edge, and entity ids of the patterned entities.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_face_edge_ids: Vec<FaceEdgeInfo>,
Expand All @@ -818,9 +812,6 @@ define_ok_modeling_cmd_response_enum! {
/// The response from the `EntityLinearPattern` command.
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
pub struct EntityLinearPattern {
/// The UUIDs of the entities that were created.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_ids: Vec<Uuid>,
/// The Face, edge, and entity ids of the patterned entities.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_face_edge_ids: Vec<FaceEdgeInfo>,
Expand All @@ -829,9 +820,6 @@ define_ok_modeling_cmd_response_enum! {
/// The response from the `EntityCircularPattern` command.
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
pub struct EntityCircularPattern {
/// The UUIDs of the entities that were created.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_ids: Vec<Uuid>,
/// The Face, edge, and entity ids of the patterned entities.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_face_edge_ids: Vec<FaceEdgeInfo>,
Expand All @@ -840,9 +828,6 @@ define_ok_modeling_cmd_response_enum! {
/// The response from the `EntityMirror` endpoint.
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
pub struct EntityMirror {
/// The UUIDs of the entities that were created.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_ids: Vec<Uuid>,
/// The Face, edge, and entity ids of the patterned entities.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_face_edge_ids: Vec<FaceEdgeInfo>,
Expand All @@ -851,9 +836,6 @@ define_ok_modeling_cmd_response_enum! {
/// The response from the `EntityMirrorAcrossEdge` endpoint.
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema, ModelingCmdOutput)]
pub struct EntityMirrorAcrossEdge {
/// The UUIDs of the entities that were created.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_ids: Vec<Uuid>,
/// The Face, edge, and entity ids of the patterned entities.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub entity_face_edge_ids: Vec<FaceEdgeInfo>,
Expand Down
Loading