/* Options: Date: 2026-07-08 19:41:55 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CloseoutListRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/v1/projects/{ProjectID}/closeout", Verbs="GET,OPTIONS") open class CloseoutListRequest : IReturn { open var ProjectID:Int? = null companion object { private val responseType = CloseoutListResponse::class.java } override fun getResponseType(): Any? = CloseoutListRequest.responseType } open class CloseoutListResponse { open var ResponseStatus:ResponseStatus? = null open var ProjectID:Int? = null open var Items:ArrayList = ArrayList() open var Status:CloseoutStatus? = null } open class CloseoutItem { open var CloseoutItemID:Int? = null open var CloseoutItemUID:UUID? = null open var ProjectID:Int? = null open var ItemKey:String? = null open var Label:String? = null open var Detail:String? = null open var Status:String? = null open var IsApplicable:Boolean? = null open var SortOrder:Int? = null open var CompletedAt:Date? = null open var CompletedBy:String? = null open var CreatedBy:String? = null open var CreatedAt:Date? = null open var UpdatedAt:Date? = null } open class CloseoutStatus { open var ProjectID:Int? = null open var TotalItems:Int? = null open var DoneCount:Int? = null open var OutstandingCount:Int? = null open var AllClear:Boolean? = null open var RetainageAmount:BigDecimal? = null open var RetainageReleased:Boolean? = null open var ReleasedPayApplicationID:Int? = null open var ReleasedInvoiceID:Int? = null open var ReleasedAt:Date? = null }