/* Options: Date: 2025-12-06 06:26:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReplyToStaffInvitationRequest.* //ExcludeTypes: //InitializeCollections: True //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="/staff/reply", Verbs="POST") open class ReplyToStaffInvitationRequest : IReturn, IPost { open var staffInvitationId:Long? = null open var reply:StaffInvitationReply? = null companion object { private val responseType = ReplyToStaffInvitationResponse::class.java } override fun getResponseType(): Any? = ReplyToStaffInvitationRequest.responseType } open class ReplyToStaffInvitationResponse { open var deniedStaffInvitationId:Long? = null open var acceptedStaff:StaffDto? = null } enum class StaffInvitationReply { Accept, Deny, } enum class StaffRole { Owner, Admin, Regular, } enum class BusinessRole { Owner, Manager, Sales, Marketing, Other, } open class StaffDto { open var id:Long? = null open var firstName:String? = null open var lastName:String? = null open var email:String? = null open var role:StaffRole? = null open var placeId:Long? = null open var businessId:Long? = null open var userId:Long? = null open var placeName:String? = null open var businessName:String? = null open var mobileNumber:String? = null open var businessRole:BusinessRole? = null open var lastActiveOn:Date? = null }