/* Options: Date: 2025-12-10 20:50:09 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.86degrees.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ConfirmOtp.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* open class ConfirmOtp : ApiServiceRequest(), IReturn { var SystemUserId:Int? = null var Otp:String? = null var UtcOffset:Int? = null companion object { private val responseType = ConfirmOtpResponse::class.java } override fun getResponseType(): Any? = ConfirmOtp.responseType } open class ConfirmOtpResponse : ApiServiceResponse() { var Data:LoginData? = null var MustSetPin:Boolean? = null } open class ApiServiceRequest : IServiceRequest, IHasApiKey, IHasDeviceInfo, IHasClientId { /** * The API Key required for authentication */ @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) var ApiKey:String? = null /** * Latitude of the user making this request */ @ApiMember(DataType="double", Description="Latitude of the user making this request") var Latitude:Double? = null /** * Longitude of the user making this request */ @ApiMember(DataType="double", Description="Longitude of the user making this request") var Longitude:Double? = null } open interface IServiceRequest { } open interface IHasApiKey { var ApiKey:String? } open interface IHasDeviceInfo { } open interface IHasClientId { } open class DependentData { var DependentId:Int? = null var FirstName:String? = null var Surname:String? = null var MobileNumber:String? = null var Email:String? = null var IdNumber:String? = null } open class LoginData { var SystemUserId:Int? = null var RefreshToken:String? = null var FirstName:String? = null var IsDependent:Boolean? = null var FullName:String? = null var AllProducts:ArrayList = ArrayList() var UserProducts:ArrayList = ArrayList() var OtherProducts:ArrayList = ArrayList() var ContactNumber:String? = null var Dependents:ArrayList = ArrayList() var UnreadMessageCount:Int? = null var PendingFeedbackIds:ArrayList = ArrayList() } open class SystemUserProductData { var IntegrationType:IntegrationProviderType? = null var ProductId:Int? = null var Name:String? = null var NameAfrikaans:String? = null var PanicId:Long? = null var UserHasProduct:Boolean? = null var CanActivate:Boolean? = null var Enquired:Boolean? = null var DashImage:String? = null var ShowOnDash:Boolean? = null var ActionUrl:String? = null var Attachments:ArrayList = ArrayList() var DescriptionEng:String? = null var SummaryEng:String? = null var DescriptionAfr:String? = null var SummaryAfr:String? = null } @Flags() enum class IntegrationProviderType(val value:Int) { @SerializedName("0") None(0), @SerializedName("1") Ea(1), @SerializedName("2") IlluminaHubProtectMe(2), @SerializedName("3") MyLegalHand(3), @SerializedName("4") AccidentAngels(4), @SerializedName("5") EmergencyServices(5), @SerializedName("6") MightyMobile(6), @SerializedName("7") Pulsit(7), @SerializedName("8") Bolt(8), } open class SystemUserProductAttachmentData { var Id:Int? = null var FileName:String? = null var MainFileUrl:String? = null var ThumbnailUrl:String? = null var IsVideo:Boolean? = null var IsImage:Boolean? = null var IsPdf:Boolean? = null } open class ApiServiceResponse : IServiceResponse { var Description:String? = null var Heading:String? = null var WasSuccessful:Boolean? = null var ModelState:Object? = null }