/* Options: Date: 2024-04-29 08:03:49 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: AddOrganizationCategory.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/orgs/{OrganizationId}/categories", Verbs="POST") open class AddOrganizationCategory : IReturn, IPost { var organizationId:Int? = null var slug:String? = null var name:String? = null var description:String? = null var technologyIds:ArrayList? = null companion object { private val responseType = AddOrganizationCategoryResponse::class.java } override fun getResponseType(): Any? = AddOrganizationCategory.responseType } open class AddOrganizationCategoryResponse { var id:Int? = null var slug:String? = null var responseStatus:ResponseStatus? = null }