/* Options: Date: 2026-09-22 23:30:50 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: PlanSetStatusRequest.* //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/plansets/{PlanSetUID}/status", Verbs="GET,OPTIONS") public static class PlanSetStatusRequest implements IReturn { public UUID PlanSetUID = null; public UUID getPlanSetUID() { return PlanSetUID; } public PlanSetStatusRequest setPlanSetUID(UUID value) { this.PlanSetUID = value; return this; } private static Object responseType = PlanSetStatusResponse.class; public Object getResponseType() { return responseType; } } public static class PlanSetStatusResponse { public ResponseStatus ResponseStatus = null; public UUID PlanSetUID = null; public String Status = null; public Integer Progress = null; public Integer PageCount = null; public Integer SheetCount = null; public String ErrorText = null; public String StageLabel = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public PlanSetStatusResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public UUID getPlanSetUID() { return PlanSetUID; } public PlanSetStatusResponse setPlanSetUID(UUID value) { this.PlanSetUID = value; return this; } public String getStatus() { return Status; } public PlanSetStatusResponse setStatus(String value) { this.Status = value; return this; } public Integer getProgress() { return Progress; } public PlanSetStatusResponse setProgress(Integer value) { this.Progress = value; return this; } public Integer getPageCount() { return PageCount; } public PlanSetStatusResponse setPageCount(Integer value) { this.PageCount = value; return this; } public Integer getSheetCount() { return SheetCount; } public PlanSetStatusResponse setSheetCount(Integer value) { this.SheetCount = value; return this; } public String getErrorText() { return ErrorText; } public PlanSetStatusResponse setErrorText(String value) { this.ErrorText = value; return this; } public String getStageLabel() { return StageLabel; } public PlanSetStatusResponse setStageLabel(String value) { this.StageLabel = value; return this; } } }