/* Options: Date: 2024-12-22 13:45:49 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: AddFavoriteTechStack.* //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="/favorites/techtacks/{TechnologyStackId}", Verbs="PUT") open class AddFavoriteTechStack : IReturn, IPut { open var technologyStackId:Int? = null companion object { private val responseType = FavoriteTechStackResponse::class.java } override fun getResponseType(): Any? = AddFavoriteTechStack.responseType } open class FavoriteTechStackResponse { open var result:TechnologyStack? = null } open class TechnologyStack : TechnologyStackBase() { } open class TechnologyStackBase { open var id:Long? = null open var name:String? = null open var vendorName:String? = null open var description:String? = null open var appUrl:String? = null open var screenshotUrl:String? = null open var created:Date? = null open var createdBy:String? = null open var lastModified:Date? = null open var lastModifiedBy:String? = null open var isLocked:Boolean? = null open var ownerId:String? = null open var slug:String? = null @StringLength(MaximumLength=2147483647) open var details:String? = null @StringLength(MaximumLength=2147483647) open var detailsHtml:String? = null open var lastStatusUpdate:Date? = null open var organizationId:Int? = null open var commentsPostId:Long? = null open var viewCount:Int? = null open var favCount:Int? = null }