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