/* Options: Date: 2025-12-06 08:39:55 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: ContactInvitationRequest.* //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/ContactInvitation", Verbs="POST,OPTIONS") open class ContactInvitationRequest : IReturn { open var ContactInvitation:ContactInvitation? = null companion object { private val responseType = ContactInvitationResponse::class.java } override fun getResponseType(): Any? = ContactInvitationRequest.responseType } open class ContactInvitationResponse { open var ResponseStatus:ResponseStatus? = null } open class ContactInvitation { open var Id:Int? = null open var AgentId:Int? = null open var ContactId:Int? = null open var Url:String? = null open var UrlCode:String? = null open var iDecideUserId:Int? = null open var DateCreated:Date? = null open var CreatedBy:UUID? = null open var Deleted:Boolean? = null open var DateDeleted:Date? = null open var DeletedBy:UUID? = null }