/* Options: Date: 2025-08-05 02:26:43 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LeadScoreRequestDto.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/sitefinity/data-intelligence/leadscore", Verbs="GET") open class LeadScoreRequestDto : IReturn { var Filter:String? = null companion object { private val responseType = LeadScoreListViewModel::class.java } override fun getResponseType(): Any? = LeadScoreRequestDto.responseType } open class LeadScoreListViewModel { var LeadScores:IList? = null var DecAppUrl:String? = null } open class LeadScore { var Id:Int? = null var Name:String? = null var State:LeadScoreState? = null var Levels:IList? = null var Fields:HashMap = HashMap() var CreatedOn:Date? = null var CreatedByUserId:String? = null var ModifiedOn:Date? = null var ModifiedByUserId:String? = null var ToBeReinitializedAt:Date? = null } enum class LeadScoreState { Inactive, Active, ToBeDeleted, } open class LeadScoreLevel { var Id:Int? = null var Name:String? = null var Threshold:Int? = null var SendNotification:Boolean? = null var Email:String? = null }