/* Options: Date: 2026-08-01 02:09:23 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: ResourceConflictsRequest.* //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/resource-conflicts", Verbs="GET") public static class ResourceConflictsRequest implements IReturn { public Integer Window = null; public Integer getWindow() { return Window; } public ResourceConflictsRequest setWindow(Integer value) { this.Window = value; return this; } private static Object responseType = ResourceConflictsResponse.class; public Object getResponseType() { return responseType; } } public static class ResourceConflictsResponse { public ArrayList Conflicts = new ArrayList(); public Integer EquipmentWatched = null; public Integer WorkersWatched = null; public Integer CrewsWatched = null; public Integer ResolvedInWindow = null; public Boolean CanResolve = null; public ResponseStatus ResponseStatus = null; public ArrayList getConflicts() { return Conflicts; } public ResourceConflictsResponse setConflicts(ArrayList value) { this.Conflicts = value; return this; } public Integer getEquipmentWatched() { return EquipmentWatched; } public ResourceConflictsResponse setEquipmentWatched(Integer value) { this.EquipmentWatched = value; return this; } public Integer getWorkersWatched() { return WorkersWatched; } public ResourceConflictsResponse setWorkersWatched(Integer value) { this.WorkersWatched = value; return this; } public Integer getCrewsWatched() { return CrewsWatched; } public ResourceConflictsResponse setCrewsWatched(Integer value) { this.CrewsWatched = value; return this; } public Integer getResolvedInWindow() { return ResolvedInWindow; } public ResourceConflictsResponse setResolvedInWindow(Integer value) { this.ResolvedInWindow = value; return this; } public Boolean isCanResolve() { return CanResolve; } public ResourceConflictsResponse setCanResolve(Boolean value) { this.CanResolve = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public ResourceConflictsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class ResourceConflictDto { public String Id = null; public String Kind = null; public String Name = null; public String Severity = null; public String Summary = null; public ArrayList Bookings = new ArrayList(); public ArrayList Options = new ArrayList(); public String getId() { return Id; } public ResourceConflictDto setId(String value) { this.Id = value; return this; } public String getKind() { return Kind; } public ResourceConflictDto setKind(String value) { this.Kind = value; return this; } public String getName() { return Name; } public ResourceConflictDto setName(String value) { this.Name = value; return this; } public String getSeverity() { return Severity; } public ResourceConflictDto setSeverity(String value) { this.Severity = value; return this; } public String getSummary() { return Summary; } public ResourceConflictDto setSummary(String value) { this.Summary = value; return this; } public ArrayList getBookings() { return Bookings; } public ResourceConflictDto setBookings(ArrayList value) { this.Bookings = value; return this; } public ArrayList getOptions() { return Options; } public ResourceConflictDto setOptions(ArrayList value) { this.Options = value; return this; } } public static class ResourceConflictBookingDto { public String Project = null; public String Job = null; public String Window = null; public String Tag = null; public Boolean Hot = null; public String getProject() { return Project; } public ResourceConflictBookingDto setProject(String value) { this.Project = value; return this; } public String getJob() { return Job; } public ResourceConflictBookingDto setJob(String value) { this.Job = value; return this; } public String getWindow() { return Window; } public ResourceConflictBookingDto setWindow(String value) { this.Window = value; return this; } public String getTag() { return Tag; } public ResourceConflictBookingDto setTag(String value) { this.Tag = value; return this; } public Boolean isHot() { return Hot; } public ResourceConflictBookingDto setHot(Boolean value) { this.Hot = value; return this; } } public static class ResourceConflictOptionDto { public String Id = null; public String Label = null; public String Note = null; public Boolean Clears = null; public Boolean Recommended = null; public String Why = null; public String ActionJson = null; public String getId() { return Id; } public ResourceConflictOptionDto setId(String value) { this.Id = value; return this; } public String getLabel() { return Label; } public ResourceConflictOptionDto setLabel(String value) { this.Label = value; return this; } public String getNote() { return Note; } public ResourceConflictOptionDto setNote(String value) { this.Note = value; return this; } public Boolean isClears() { return Clears; } public ResourceConflictOptionDto setClears(Boolean value) { this.Clears = value; return this; } public Boolean isRecommended() { return Recommended; } public ResourceConflictOptionDto setRecommended(Boolean value) { this.Recommended = value; return this; } public String getWhy() { return Why; } public ResourceConflictOptionDto setWhy(String value) { this.Why = value; return this; } public String getActionJson() { return ActionJson; } public ResourceConflictOptionDto setActionJson(String value) { this.ActionJson = value; return this; } } }