/* Options: Date: 2024-10-06 10:29:42 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CRMSharepointLocationRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/DynamicsCRM/Sharepoint/Location", Verbs="POST") open class CRMSharepointLocationRequest : IReturn { var application_guid:String? = null var lead_guid:String? = null var regent_id:Int? = null companion object { private val responseType = CRMSharepointLocationResponse::class.java } override fun getResponseType(): Any? = CRMSharepointLocationRequest.responseType } open class CRMSharepointLocationResponse { var responseStatus:ResponseStatus? = null var guid:String? = null var relativeurl:String? = null var regarding_guid:String? = null }