/* Options: Date: 2026-04-04 01:27:07 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetContactNotifications.* //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.* /** * Get notifications for the specified contact */ @Route(Path="/contact/{ContactId}/notifications") @Api(Description="Get notifications for the specified contact") open class GetContactNotifications : IReturn { /** * Id of contact to get notifications for */ @ApiMember(Description="Id of contact to get notifications for", IsRequired=true, Name="ContactId") open var ContactId:UUID? = null /** * Id of licensee to get notifications for */ @ApiMember(Description="Id of licensee to get notifications for", IsRequired=true, Name="LicenseeId") open var LicenseeId:UUID? = null /** * Id of suite to get notifications for */ @ApiMember(Description="Id of suite to get notifications for", IsRequired=true, Name="Suite") open var SuiteId:UUID? = null companion object { private val responseType = GetContactNotificationsResponse::class.java } override fun getResponseType(): Any? = GetContactNotifications.responseType } @ApiResponse(Description="List of contact notifications") open class GetContactNotificationsResponse { open var Notifications:ArrayList? = null open var ResponseStatus:ResponseStatus? = null } open class NotificationGroup { open var GroupName:String? = null open var Notifications:ArrayList? = null } open class NotificationDetails { open var NotificationId:UUID? = null open var NotificationGroupName:String? = null open var NotificationValueId:UUID? = null open var Name:String? = null open var Description:String? = null open var IsMandatory:Boolean? = null open var IsCardinality:Boolean? = null open var IsSystem:Boolean? = null open var IsVisibleToRecipients:Boolean? = null open var Index:Int? = null open var Email:InputSwitch? = null open var SMS:InputSwitch? = null open var UpdateNotification:InputSwitch? = null open var Push:InputSwitch? = null open var Phone:InputSwitch? = null } open class InputSwitch { open var Id:String? = null open var Name:String? = null open var IsDisabled:Boolean? = null open var IsChecked:Boolean? = null }