/* Options: Date: 2024-04-28 10:28:51 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: PinPostComment.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/posts/{PostId}/comments/{Id}/pin", Verbs="PUT") open class PinPostComment : IReturn, IPut { var id:Long? = null var postId:Long? = null var pin:Boolean? = null companion object { private val responseType = PinPostCommentResponse::class.java } override fun getResponseType(): Any? = PinPostComment.responseType } open class PinPostCommentResponse { var responseStatus:ResponseStatus? = null }