/* Options: Date: 2026-07-08 22:11:06 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: CloseoutListRequest.* //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/projects/{ProjectID}/closeout", Verbs="GET,OPTIONS") public static class CloseoutListRequest implements IReturn { public Integer ProjectID = null; public Integer getProjectID() { return ProjectID; } public CloseoutListRequest setProjectID(Integer value) { this.ProjectID = value; return this; } private static Object responseType = CloseoutListResponse.class; public Object getResponseType() { return responseType; } } public static class CloseoutListResponse { public ResponseStatus ResponseStatus = null; public Integer ProjectID = null; public ArrayList Items = new ArrayList(); public CloseoutStatus Status = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public CloseoutListResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Integer getProjectID() { return ProjectID; } public CloseoutListResponse setProjectID(Integer value) { this.ProjectID = value; return this; } public ArrayList getItems() { return Items; } public CloseoutListResponse setItems(ArrayList value) { this.Items = value; return this; } public CloseoutStatus getStatus() { return Status; } public CloseoutListResponse setStatus(CloseoutStatus value) { this.Status = value; return this; } } public static class CloseoutItem { public Integer CloseoutItemID = null; public UUID CloseoutItemUID = null; public Integer ProjectID = null; public String ItemKey = null; public String Label = null; public String Detail = null; public String Status = null; public Boolean IsApplicable = null; public Integer SortOrder = null; public Date CompletedAt = null; public String CompletedBy = null; public String CreatedBy = null; public Date CreatedAt = null; public Date UpdatedAt = null; public Integer getCloseoutItemID() { return CloseoutItemID; } public CloseoutItem setCloseoutItemID(Integer value) { this.CloseoutItemID = value; return this; } public UUID getCloseoutItemUID() { return CloseoutItemUID; } public CloseoutItem setCloseoutItemUID(UUID value) { this.CloseoutItemUID = value; return this; } public Integer getProjectID() { return ProjectID; } public CloseoutItem setProjectID(Integer value) { this.ProjectID = value; return this; } public String getItemKey() { return ItemKey; } public CloseoutItem setItemKey(String value) { this.ItemKey = value; return this; } public String getLabel() { return Label; } public CloseoutItem setLabel(String value) { this.Label = value; return this; } public String getDetail() { return Detail; } public CloseoutItem setDetail(String value) { this.Detail = value; return this; } public String getStatus() { return Status; } public CloseoutItem setStatus(String value) { this.Status = value; return this; } public Boolean getIsApplicable() { return IsApplicable; } public CloseoutItem setIsApplicable(Boolean value) { this.IsApplicable = value; return this; } public Integer getSortOrder() { return SortOrder; } public CloseoutItem setSortOrder(Integer value) { this.SortOrder = value; return this; } public Date getCompletedAt() { return CompletedAt; } public CloseoutItem setCompletedAt(Date value) { this.CompletedAt = value; return this; } public String getCompletedBy() { return CompletedBy; } public CloseoutItem setCompletedBy(String value) { this.CompletedBy = value; return this; } public String getCreatedBy() { return CreatedBy; } public CloseoutItem setCreatedBy(String value) { this.CreatedBy = value; return this; } public Date getCreatedAt() { return CreatedAt; } public CloseoutItem setCreatedAt(Date value) { this.CreatedAt = value; return this; } public Date getUpdatedAt() { return UpdatedAt; } public CloseoutItem setUpdatedAt(Date value) { this.UpdatedAt = value; return this; } } public static class CloseoutStatus { public Integer ProjectID = null; public Integer TotalItems = null; public Integer DoneCount = null; public Integer OutstandingCount = null; public Boolean AllClear = null; public BigDecimal RetainageAmount = null; public Boolean RetainageReleased = null; public Integer ReleasedPayApplicationID = null; public Integer ReleasedInvoiceID = null; public Date ReleasedAt = null; public Integer getProjectID() { return ProjectID; } public CloseoutStatus setProjectID(Integer value) { this.ProjectID = value; return this; } public Integer getTotalItems() { return TotalItems; } public CloseoutStatus setTotalItems(Integer value) { this.TotalItems = value; return this; } public Integer getDoneCount() { return DoneCount; } public CloseoutStatus setDoneCount(Integer value) { this.DoneCount = value; return this; } public Integer getOutstandingCount() { return OutstandingCount; } public CloseoutStatus setOutstandingCount(Integer value) { this.OutstandingCount = value; return this; } public Boolean isAllClear() { return AllClear; } public CloseoutStatus setAllClear(Boolean value) { this.AllClear = value; return this; } public BigDecimal getRetainageAmount() { return RetainageAmount; } public CloseoutStatus setRetainageAmount(BigDecimal value) { this.RetainageAmount = value; return this; } public Boolean isRetainageReleased() { return RetainageReleased; } public CloseoutStatus setRetainageReleased(Boolean value) { this.RetainageReleased = value; return this; } public Integer getReleasedPayApplicationID() { return ReleasedPayApplicationID; } public CloseoutStatus setReleasedPayApplicationID(Integer value) { this.ReleasedPayApplicationID = value; return this; } public Integer getReleasedInvoiceID() { return ReleasedInvoiceID; } public CloseoutStatus setReleasedInvoiceID(Integer value) { this.ReleasedInvoiceID = value; return this; } public Date getReleasedAt() { return ReleasedAt; } public CloseoutStatus setReleasedAt(Date value) { this.ReleasedAt = value; return this; } } }