/* Options: Date: 2024-10-06 10:33:02 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: CRMAccountsRequest.* //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="/DynamicsCRM/Accounts", Verbs="POST") open class CRMAccountsRequest : IReturn> { var create_in_regis:Boolean? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = CRMAccountsRequest.responseType } open class CRMAccountResponse { var responseStatus:ResponseStatus? = null var guid:String? = null var regent_id:Int? = null var name:String? = null var other_name:String? = null var institution_names:String? = null var business_type:String? = null var regent_friendly_church:String? = null var denomination:String? = null var reason_added:String? = null var connection_to_regent:String? = null var educational_affiliation:String? = null var accreditation_status:String? = null var accreditation_status_notes:String? = null var addr1:String? = null var addr2:String? = null var city:String? = null var state:String? = null var country:String? = null var code:String? = null var email:String? = null var solicitation_method:String? = null var solicitation_exceptions:String? = null var campaign_monitor_optin:Boolean? = null var campaign_monitor_suppressed:Boolean? = null var consent_to_receive_bulk_email:String? = null var last_consent_source:String? = null var last_consent_date:Date? = null var campaign_monitor_lists:String? = null var phone_home:String? = null var phone_bus:String? = null var phone_cell:String? = null var no_mail:Boolean? = null var no_email:Boolean? = null var no_bulk_email:Boolean? = null var no_phone:Boolean? = null var no_marketing_materials:Boolean? = null var prefers_email:Boolean? = null var added_by:String? = null var added_date:Date? = null var changed_by:String? = null var changed_date:Date? = null var owner_full_name:String? = null }