/* Options: Date: 2026-07-08 20:30:02 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: StaffResponsesRequest.* //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/staff/outreach/responses", Verbs="GET,OPTIONS") open class StaffResponsesRequest : IReturn { open var PlaceholderContactID:Int? = null companion object { private val responseType = StaffResponsesResponse::class.java } override fun getResponseType(): Any? = StaffResponsesRequest.responseType } open class StaffResponsesResponse { open var ResponseStatus:ResponseStatus? = null open var Responses:ArrayList = ArrayList() open var SentCount:Int? = null open var OpenedCount:Int? = null open var ClickedCount:Int? = null open var Accepted:Int? = null open var Question:Int? = null open var Declined:Int? = null open var NoReply:Int? = null } open class StaffResponseDto { open var StaffOutreachRecipientID:Int? = null open var ContactID:Int? = null open var Name:String? = null open var Kind:String? = null open var Rate:BigDecimal? = null open var Rating:BigDecimal? = null open var RatingCount:Int? = null open var Status:String? = null open var Note:String? = null open var CounterRate:BigDecimal? = null open var CounterStartDate:String? = null }