/* Options: Date: 2026-07-08 19:42:01 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: PayApplicationDetailRequest.* //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}/pay-apps/{PeriodNumber}", Verbs="GET,OPTIONS") open class PayApplicationDetailRequest : IReturn { open var ProjectID:Int? = null open var PeriodNumber:Int? = null companion object { private val responseType = PayApplicationResponse::class.java } override fun getResponseType(): Any? = PayApplicationDetailRequest.responseType } open class PayApplicationResponse { open var ResponseStatus:ResponseStatus? = null open var Application:PayApplication? = null } open class PayApplicationLine { open var PayApplicationLineID:Int? = null open var PayApplicationID:Int? = null open var CostCode:String? = null open var Description:String? = null open var ScheduledValue:BigDecimal? = null open var FromPreviousPct:BigDecimal? = null open var ThisPeriodPct:BigDecimal? = null open var StoredMaterials:BigDecimal? = null open var IsChangeOrder:Boolean? = null open var ChangeOrderID:Int? = null open var SortOrder:Int? = null } open class PayApplication { open var PayApplicationID:Int? = null open var PayApplicationUID:UUID? = null open var ProjectID:Int? = null open var PeriodNumber:Int? = null open var PeriodStart:Date? = null open var PeriodEnd:Date? = null open var Status:String? = null open var BillingTemplate:String? = null open var RetainagePct:BigDecimal? = null open var OriginalContractSum:BigDecimal? = null open var NetChangeByCO:BigDecimal? = null open var ContractSumToDate:BigDecimal? = null open var CompletedStoredToDate:BigDecimal? = null open var RetainageAmount:BigDecimal? = null open var EarnedLessRetainage:BigDecimal? = null open var LessPreviousCertificates:BigDecimal? = null open var CurrentPaymentDue:BigDecimal? = null open var BalanceToFinish:BigDecimal? = null open var InvoiceID:Int? = null open var CertifiedAt:Date? = null open var CertifiedBy:String? = null open var CreatedBy:String? = null open var CreatedAt:Date? = null open var UpdatedAt:Date? = null open var Lines:ArrayList = ArrayList() }