/* Options: Date: 2024-05-02 05:20:31 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: UpdateOrganizationLabel.* //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}/members/{Slug}", Verbs="PUT") open class UpdateOrganizationLabel : IReturn, IPut { 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? = UpdateOrganizationLabel.responseType } open class OrganizationLabelResponse { var responseStatus:ResponseStatus? = null }