/* Options: Date: 2026-07-08 20:27:08 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: PunchUpdateRequest.* //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}/punch/{PunchItemID}", Verbs="PUT,OPTIONS") open class PunchUpdateRequest : IReturn { open var ProjectID:Int? = null open var PunchItemID:Int? = null open var Title:String? = null open var Description:String? = null open var Area:String? = null open var Trade:String? = null open var Priority:String? = null open var AssignedSub:String? = null open var AssignedTo:String? = null open var AssignedSubContactID:Int? = null companion object { private val responseType = PunchItemResponse::class.java } override fun getResponseType(): Any? = PunchUpdateRequest.responseType } open class PunchItemResponse { open var ResponseStatus:ResponseStatus? = null open var Item:PunchItem? = null open var Summary:PunchSummary? = null } open class PunchItem { open var PunchItemID:Int? = null open var PunchItemUID:UUID? = null open var ProjectID:Int? = null open var PunchNo:String? = null open var Title:String? = null open var Description:String? = null open var Area:String? = null open var Trade:String? = null open var Status:String? = null open var Priority:String? = null open var AssignedSub:String? = null open var AssignedTo:String? = null open var AssignedSubContactID:Int? = null open var PhotoCount:Int? = null open var OriginType:String? = null open var OriginRef:String? = null open var OpenedAt:Date? = null open var VerifiedAt:Date? = null open var ClosedAt:Date? = null open var CreatedBy:String? = null open var CreatedAt:Date? = null open var UpdatedAt:Date? = null } open class PunchSummary { open var ProjectID:Int? = null open var TotalItems:Int? = null open var OpenCount:Int? = null open var VerifyCount:Int? = null open var ClosedCount:Int? = null open var RejectedCount:Int? = null open var PercentComplete:Int? = null }