/* Options: Date: 2024-12-29 02:13:49 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: OrganizationsRequest.* //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="/organizations", Verbs="POST") open class OrganizationsRequest : IReturn> { var is_vendor:Boolean? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = OrganizationsRequest.responseType } open class OrganizationResponse { var responseStatus:ResponseStatus? = null var organization_id:Int? = null var organization_name:String? = null var email: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 phone_cell:String? = null var phone_bus:String? = null var phone_home:String? = null var is_institution:Boolean? = null var is_vendor:Boolean? = null var is_re:Boolean? = null }