/* Options: Date: 2025-12-06 09:52:58 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DistributedBoxesViewLookup.* //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="/distributed_boxes_view", Verbs="GET") open class DistributedBoxesViewLookup : IReturn> { var id:Long? = null var tenantsId:Long? = null var appUserId:Long? = null var authAppUserId:Long? = null var deploymentDate:Date? = null var numberBoxes:Int? = null var recipientType:String? = null var foodGardensId:Long? = null var otherDescription:String? = null var latitude:Double? = null var longitude:Double? = null var phoneNumber:String? = null var displayName:String? = null var email:String? = null var applicationDate:Date? = null var isZoneMain:Boolean? = null var isDisabled:Boolean? = null var gender:String? = null var ethnicGroup:String? = null var age:Int? = null var approvalDate:Date? = null var approved:Boolean? = null var authorizedBy:String? = null var mediaPath:String? = null var name:String? = null var description:String? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = DistributedBoxesViewLookup.responseType }