/* Options: Date: 2024-05-01 23:44:43 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: CreateTechnology.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/technology", Verbs="POST") open class CreateTechnology : IReturn, IPost { var name:String? = null var slug:String? = null var vendorName:String? = null var vendorUrl:String? = null var productUrl:String? = null var logoUrl:String? = null var description:String? = null var isLocked:Boolean? = null var tier:TechnologyTier? = null companion object { private val responseType = CreateTechnologyResponse::class.java } override fun getResponseType(): Any? = CreateTechnology.responseType } open class CreateTechnologyResponse { var result:Technology? = null var responseStatus:ResponseStatus? = null } open class Technology : TechnologyBase() { var id:Long? = null var name:String? = null var vendorName:String? = null var vendorUrl:String? = null var productUrl:String? = null var logoUrl:String? = null var description:String? = null var created:Date? = null var createdBy:String? = null var lastModified:Date? = null var lastModifiedBy:String? = null var ownerId:String? = null var slug:String? = null var logoApproved:Boolean? = null var isLocked:Boolean? = null var tier:TechnologyTier? = null var lastStatusUpdate:Date? = null var organizationId:Int? = null var commentsPostId:Long? = null var viewCount:Int? = null var favCount:Int? = null } enum class TechnologyTier { ProgrammingLanguage, Client, Http, Server, Data, SoftwareInfrastructure, OperatingSystem, HardwareInfrastructure, ThirdPartyServices, } open class TechnologyBase { var id:Long? = null var name:String? = null var vendorName:String? = null var vendorUrl:String? = null var productUrl:String? = null var logoUrl:String? = null var description:String? = null var created:Date? = null var createdBy:String? = null var lastModified:Date? = null var lastModifiedBy:String? = null var ownerId:String? = null var slug:String? = null var logoApproved:Boolean? = null var isLocked:Boolean? = null var tier:TechnologyTier? = null var lastStatusUpdate:Date? = null var organizationId:Int? = null var commentsPostId:Long? = null var viewCount:Int? = null var favCount:Int? = null }