/* Options: Date: 2025-12-06 08:52:59 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDebriefReviewRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/debriefreview/{Id}", Verbs="GET") open class GetDebriefReviewRequest : ApiServiceRequest(), IReturn { var id:Int? = null companion object { private val responseType = GetDebriefReviewResponse::class.java } override fun getResponseType(): Any? = GetDebriefReviewRequest.responseType } open class GetDebriefReviewResponse : ApiServiceResponse() { @SerializedName("data") var Data:DebriefReviewData? = null } open class ApiServiceRequest : IServiceRequest, IHasApiKey, IHasDeviceInfo { /** * The API Key required for authentication */ @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) var apiKey:String? = null /** * Latitude of the user making this request */ @ApiMember(DataType="double", Description="Latitude of the user making this request") var latitude:Double? = null /** * Longitude of the user making this request */ @ApiMember(DataType="double", Description="Longitude of the user making this request") var longitude:Double? = null } open interface IServiceRequest { } open interface IHasApiKey { var apiKey:String? } open interface IHasDeviceInfo { } open class DebriefReviewData { var id:Int? = null var name:String? = null var companyName:String? = null var meetingId:Int? = null var linkedToMeeting:String? = null var meetingTime:String? = null var address:String? = null var research:String? = null var nextSteps:String? = null var feedback:String? = null var newOpportunities:String? = null var personnelInfo:String? = null var groupStructure:String? = null var industry:String? = null var meetingLatitude:Double? = null var meetingLongitude:Double? = null var recordingLength:String? = null var recordingTooShort:String? = null var majoritySilent:String? = null var volumeTooLow:String? = null var actionsToTake:String? = null var meetingSummary:String? = null var polarity:String? = null var sentiment:String? = null var notesForManagement:String? = null var notesForSalesPerson:String? = null var overallScore:String? = null var personalAppeal:String? = null var vocabulary:String? = null var equipment:String? = null var structure:String? = null var coherence:String? = null var sectorKnowledge:String? = null var clarityOfTechnicalInput:String? = null var caseStudyRelevance:String? = null var storytelling:String? = null var summation:String? = null var dynamicDiscussion:String? = null var listening:String? = null var newContacts:ArrayList = ArrayList() var reportUrl:String? = null var ratingCommentDetails:ArrayList = ArrayList() } open class NewContactDetail { var name:String? = null var jobTitle:String? = null var companyName:String? = null var emailAddress:String? = null var contactNumber:String? = null } open class DebriefRatingCommentDetail { var managerId:Int? = null var name:String? = null var title:String? = null var reviewedDate:String? = null var rating:Int? = null var comments:String? = null } open class ApiServiceResponse : IServiceResponse { var description:String? = null var heading:String? = null var wasSuccessful:Boolean? = null var modelState:Object? = null }