/* Options: Date: 2024-12-22 12:20:29 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: CreateOrganization.* //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", Verbs="POST") open class CreateOrganization : IReturn, IPost { open var name:String? = null open var slug:String? = null open var description:String? = null open var refId:Long? = null open var refSource:String? = null open var refUrn:String? = null companion object { private val responseType = CreateOrganizationResponse::class.java } override fun getResponseType(): Any? = CreateOrganization.responseType } open class CreateOrganizationResponse { open var id:Int? = null open var slug:String? = null open var responseStatus:ResponseStatus? = null }