/* Options: Date: 2024-12-22 11:46:43 Version: 8.51 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PinPostComment.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/posts/{PostId}/comments/{Id}/pin", Verbs="PUT") open class PinPostComment : IReturn, IPut { open var id:Long? = null open var postId:Long? = null open var pin:Boolean? = null companion object { private val responseType = PinPostCommentResponse::class.java } override fun getResponseType(): Any? = PinPostComment.responseType } open class PinPostCommentResponse { open var responseStatus:ResponseStatus? = null }