/* Options: Date: 2024-05-04 23:24:10 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: CreateOrganizationForTechnology.* //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/posts/new", Verbs="POST") open class CreateOrganizationForTechnology : IReturn, IPost { var technologyId:Long? = null var techStackId:Long? = null companion object { private val responseType = CreateOrganizationForTechnologyResponse::class.java } override fun getResponseType(): Any? = CreateOrganizationForTechnology.responseType } open class CreateOrganizationForTechnologyResponse { var organizationId:Int? = null var organizationSlug:String? = null var commentsPostId:Long? = null var commentsPostSlug:String? = null var responseStatus:ResponseStatus? = null }