/* Options: Date: 2024-04-27 20:27:26 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdatePost.* //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="/posts/{Id}", Verbs="PUT") open class UpdatePost : IReturn, IPut { var id:Long? = null var organizationId:Int? = null @SerializedName("type") var Type:PostType? = null var categoryId:Int? = null var title:String? = null var url:String? = null var imageUrl:String? = null var content:String? = null var lock:Boolean? = null var technologyIds:ArrayList? = null var labels:ArrayList? = null var fromDate:Date? = null var toDate:Date? = null var metaType:String? = null var meta:String? = null companion object { private val responseType = UpdatePostResponse::class.java } override fun getResponseType(): Any? = UpdatePost.responseType } open class UpdatePostResponse { var responseStatus:ResponseStatus? = null } enum class PostType { Announcement, Post, Showcase, Question, Request, }