/* Options: Date: 2024-04-27 20:19:38 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: AddOrganizationLabel.* //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}/labels", Verbs="POST") open class AddOrganizationLabel : IReturn, IPost { var organizationId:Int? = null var slug:String? = null var description:String? = null var color:String? = null companion object { private val responseType = OrganizationLabelResponse::class.java } override fun getResponseType(): Any? = AddOrganizationLabel.responseType } open class OrganizationLabelResponse { var responseStatus:ResponseStatus? = null }