/* Options: Date: 2025-12-06 06:20:50 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AccidentAngelsHistoryRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/galaxy/accidentangels/history", Verbs="GET") open class AccidentAngelsHistoryRequest : BaseActivationHistoryRequest(), IReturn { companion object { private val responseType = ActivationHistoryResponse::class.java } override fun getResponseType(): Any? = AccidentAngelsHistoryRequest.responseType } open class ActivationHistoryResponse : ApiServiceResponse() { /** * Is the requested product set up and enabled on Galaxy. */ @ApiMember(Description="Is the requested product set up and enabled on Galaxy.") var ProductAvailable:Boolean? = null /** * Does the user have access to this product, based on their Galaxy profile. */ @ApiMember(Description="Does the user have access to this product, based on their Galaxy profile.") var UserHasAccess:Boolean? = null /** * A list of activation history instances, ordered by most recent first. */ @ApiMember(Description="A list of activation history instances, ordered by most recent first.") var ActivationHistory:ArrayList = ArrayList() } open class ApiServiceRequest : IServiceRequest, IHasApiKey { /** * The API Key required for authentication */ @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) var ApiKey:String? = null } open interface IServiceRequest { } open interface IHasApiKey { var ApiKey:String? } open class BaseActivationHistoryRequest : ApiServiceRequest() { /** * ID Number of the user making this request. */ @ApiMember(Description="ID Number of the user making this request.", IsRequired=true) var IdNumber:String? = null } open class ActivationHistoryData { /** * Date and Time of the activation in ISO 8601 format. */ @ApiMember(Description="Date and Time of the activation in ISO 8601 format.") var DateActivated:String? = null /** * Latitude of the activation location. */ @ApiMember(Description="Latitude of the activation location.") var Latitude:Double? = null /** * Longitude of the activation location. */ @ApiMember(Description="Longitude of the activation location.") var Longitude:Double? = null } open class ApiServiceResponse : IServiceResponse { var Description:String? = null var Heading:String? = null var WasSuccessful:Boolean? = null var ModelState:Object? = null }