/* Options: Date: 2024-12-29 02:28:59 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: CRMPaymentsRequest.* //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/Payments", Verbs="POST") open class CRMPaymentsRequest : IReturn { var from_date:Date? = null var to_date:Date? = null var regent_id:Int? = null var start_version_number:Int? = null var end_version_number:Int? = null var recurring_only:Boolean? = null var completed_only:Boolean? = null companion object { private val responseType = CRMPaymentsResponse::class.java } override fun getResponseType(): Any? = CRMPaymentsRequest.responseType } open class CRMPaymentsResponse { var responseStatus:ResponseStatus? = null var payments:ArrayList = ArrayList() var from_date:Date? = null var to_date:Date? = null var start_version_number:Int? = null var end_version_number:Int? = null } open class CRMPaymentResponse { var regent_id:Int? = null var contact_addressee:String? = null var donor_first_name:String? = null var donor_last_name:String? = null var donor_addressee:String? = null var donor_city:String? = null var donor_country:String? = null var donor_owner_full_name:String? = null var is_contact:Boolean? = null var is_account:Boolean? = null var soft_credit_regent_id:Int? = null var soft_credit_contact_addressee:String? = null var soft_credit_contact_first_name:String? = null var soft_credit_contact_last_name:String? = null var soft_credit_contact_spouse_is_main_contact:Boolean? = null var soft_credit_contact_city:String? = null var soft_credit_contact_country:String? = null var soft_credit_contact_owner_full_name:String? = null var soft_credit_second_regent_id:Int? = null var soft_credit_second_contact_addressee:String? = null var soft_credit_second_contact_first_name:String? = null var soft_credit_second_contact_last_name:String? = null var soft_credit_second_contact_spouse_is_main_contact:Boolean? = null var soft_credit_second_contact_city:String? = null var soft_credit_second_contact_country:String? = null var soft_credit_second_contact_owner_full_name:String? = null var spouse_is_main_contact:Boolean? = null var import_id:Int? = null var donation_id:String? = null var payment_id:String? = null var guid:String? = null var name:String? = null var description:String? = null var appeal_code:String? = null var designation:String? = null var designation_description:String? = null var general_ledger_account_number:String? = null var campaign:String? = null var total_pledge_amount:BigDecimal? = null var total_paid_amount:BigDecimal? = null var amount:BigDecimal? = null var canadian_amount:BigDecimal? = null var payment_exchange_rate:BigDecimal? = null var receipt_amount:BigDecimal? = null var gift_exchange_rate:BigDecimal? = null var total_paid_canadian_amount:BigDecimal? = null var is_recurring:Boolean? = null var is_complete:Boolean? = null var is_parent_donation:Boolean? = null var currency:String? = null var source:String? = null var channel:String? = null var receipting_organization:String? = null @SerializedName("type") var Type:String? = null var push_to_gp:Boolean? = null var finance_entry_date:Date? = null var finance_id:String? = null var acknowledgment_sent:Boolean? = null var send_acknowledgment:Boolean? = null var acknowledgment_template_guid:String? = null var parent_guid:String? = null var anonymous:Boolean? = null var gift_date:Date? = null var recurring_gift_start_date:Date? = null var recurring_gift_end_date:Date? = null var payment_date:Date? = null var tax_receipt:String? = null var tax_receipt_date_sent:Date? = null var cheque_number:String? = null var version_number:Int? = null var added_date:Date? = null }