/* Options: Date: 2025-09-03 20:29:29 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: NotificationRolesRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/organisations/{Id}/notification/roles/{ActionType}", Verbs="PUT") open class NotificationRolesRequest : PutOperationUnTenanted(), IReturn { var id:String? = null var actionType:String? = null var roles:ArrayList = ArrayList() companion object { private val responseType = NotificationRolesResponse::class.java } override fun getResponseType(): Any? = NotificationRolesRequest.responseType } open class NotificationRolesResponse { var responseStatus:ResponseStatus? = null var notificationSettings:OrganisationNotificationSettings? = null } open class PutOperationUnTenanted : IPut { } open class OrganisationNotificationSettings : IIdentifiableResource { var warningNotificationRoles:ArrayList = ArrayList() var jobFinishedNotificationRoles:ArrayList = ArrayList() var userIdBlockList:ArrayList = ArrayList() var id:String? = null } open interface IIdentifiableResource { var id:String? }