/* Options: Date: 2026-06-23 00:07:31 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: AgreementCreditsRequest.* //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/serviceagreement/credits", Verbs="GET,OPTIONS") open class AgreementCreditsRequest : IReturn { companion object { private val responseType = AgreementCreditsResponse::class.java } override fun getResponseType(): Any? = AgreementCreditsRequest.responseType } open class AgreementCreditsResponse { open var ResponseStatus:ResponseStatus? = null open var Credits:ArrayList = ArrayList() } open class CreditLedger { open var CreditLedgerID:Int? = null open var TenantId:UUID? = null open var BranchId:UUID? = null open var AgreementID:Int? = null open var ProjectID:Int? = null open var AgreementJobID:Int? = null open var Amount:BigDecimal? = null open var Reason:String? = null open var Status:String? = null open var CreatedBy:String? = null open var CreatedAt:Date? = null open var AppliedAt:Date? = null open var AgreementName:String? = null open var ProjectName:String? = null }