/* Options: Date: 2026-09-22 23:29:03 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PinsForEntityRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/pins/{EntityType}", Verbs="GET,OPTIONS") // @Route(Path="/v1/pins/{EntityType}/{EntityID}", Verbs="GET,OPTIONS") public static class PinsForEntityRequest implements IReturn { public String EntityType = null; public Integer EntityID = null; public UUID EntityUID = null; public String getEntityType() { return EntityType; } public PinsForEntityRequest setEntityType(String value) { this.EntityType = value; return this; } public Integer getEntityID() { return EntityID; } public PinsForEntityRequest setEntityID(Integer value) { this.EntityID = value; return this; } public UUID getEntityUID() { return EntityUID; } public PinsForEntityRequest setEntityUID(UUID value) { this.EntityUID = value; return this; } private static Object responseType = SheetPinListResponse.class; public Object getResponseType() { return responseType; } } public static class SheetPinListResponse { public ResponseStatus ResponseStatus = null; public ArrayList Pins = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public SheetPinListResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getPins() { return Pins; } public SheetPinListResponse setPins(ArrayList value) { this.Pins = value; return this; } } public static class SheetPin { public Integer SheetPinID = null; public Integer SheetID = null; public String EntityType = null; public Integer EntityID = null; public UUID EntityUID = null; public Double X = null; public Double Y = null; public String Label = null; public String CreatedBy = null; public Date CreatedAt = null; public String EntityNo = null; public String EntityTitle = null; public String EntityStatus = null; public UUID InspectionUID = null; public String SheetNumber = null; public String SheetTitle = null; public Integer PlanSetID = null; public UUID PlanSetUID = null; public String PlanSetName = null; public Integer getSheetPinID() { return SheetPinID; } public SheetPin setSheetPinID(Integer value) { this.SheetPinID = value; return this; } public Integer getSheetID() { return SheetID; } public SheetPin setSheetID(Integer value) { this.SheetID = value; return this; } public String getEntityType() { return EntityType; } public SheetPin setEntityType(String value) { this.EntityType = value; return this; } public Integer getEntityID() { return EntityID; } public SheetPin setEntityID(Integer value) { this.EntityID = value; return this; } public UUID getEntityUID() { return EntityUID; } public SheetPin setEntityUID(UUID value) { this.EntityUID = value; return this; } public Double getX() { return X; } public SheetPin setX(Double value) { this.X = value; return this; } public Double getY() { return Y; } public SheetPin setY(Double value) { this.Y = value; return this; } public String getLabel() { return Label; } public SheetPin setLabel(String value) { this.Label = value; return this; } public String getCreatedBy() { return CreatedBy; } public SheetPin setCreatedBy(String value) { this.CreatedBy = value; return this; } public Date getCreatedAt() { return CreatedAt; } public SheetPin setCreatedAt(Date value) { this.CreatedAt = value; return this; } public String getEntityNo() { return EntityNo; } public SheetPin setEntityNo(String value) { this.EntityNo = value; return this; } public String getEntityTitle() { return EntityTitle; } public SheetPin setEntityTitle(String value) { this.EntityTitle = value; return this; } public String getEntityStatus() { return EntityStatus; } public SheetPin setEntityStatus(String value) { this.EntityStatus = value; return this; } public UUID getInspectionUID() { return InspectionUID; } public SheetPin setInspectionUID(UUID value) { this.InspectionUID = value; return this; } public String getSheetNumber() { return SheetNumber; } public SheetPin setSheetNumber(String value) { this.SheetNumber = value; return this; } public String getSheetTitle() { return SheetTitle; } public SheetPin setSheetTitle(String value) { this.SheetTitle = value; return this; } public Integer getPlanSetID() { return PlanSetID; } public SheetPin setPlanSetID(Integer value) { this.PlanSetID = value; return this; } public UUID getPlanSetUID() { return PlanSetUID; } public SheetPin setPlanSetUID(UUID value) { this.PlanSetUID = value; return this; } public String getPlanSetName() { return PlanSetName; } public SheetPin setPlanSetName(String value) { this.PlanSetName = value; return this; } } }