Skip to content

Commit

Permalink
Merge pull request #126 from autodesk-platform-services/DAS-320-Issue…
Browse files Browse the repository at this point in the history
…LinkedDocumentsDetailsPosition-fix-datatype

[DAS-320] Changed the data type of Position from int to double
  • Loading branch information
sajith-subramanian authored Jan 13, 2025
2 parents 1286c2f + fd6ea7a commit 504e159
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public IssueLinkedDocumentsDetailsPosition()
///The x-value of the position in the viewable.
/// </value>
[DataMember(Name = "x", EmitDefaultValue = false)]
public int? X { get; set; }
public double? X { get; set; }

/// <summary>
///The y-value of the position in the viewable.
Expand All @@ -61,7 +61,7 @@ public IssueLinkedDocumentsDetailsPosition()
///The y-value of the position in the viewable.
/// </value>
[DataMember(Name = "y", EmitDefaultValue = false)]
public int? Y { get; set; }
public double? Y { get; set; }

/// <summary>
///The z-value of the position in the viewable.
Expand All @@ -70,7 +70,7 @@ public IssueLinkedDocumentsDetailsPosition()
///The z-value of the position in the viewable.
/// </value>
[DataMember(Name = "z", EmitDefaultValue = false)]
public int? Z { get; set; }
public double? Z { get; set; }

/// <summary>
/// Returns the string presentation of the object
Expand Down

0 comments on commit 504e159

Please sign in to comment.