/* Options: Date: 2025-12-06 06:21:54 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: MyLegalHandRequest.* //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/mylegalhand", Verbs="POST") open class MyLegalHandRequest : BaseGalaxyActivationRequest(), IReturn { companion object { private val responseType = GalaxyActivationResponse::class.java } override fun getResponseType(): Any? = MyLegalHandRequest.responseType } open class GalaxyActivationResponse : 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 } 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 BaseGalaxyActivationRequest : 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 /** * Latitude of the user making this request. */ @ApiMember(Description="Latitude of the user making this request.", IsRequired=true) var Latitude:Double? = null /** * Longitude of the user making this request. */ @ApiMember(Description="Longitude of the user making this request.", IsRequired=true) var Longitude:Double? = null } open class ApiServiceResponse : IServiceResponse { var Description:String? = null var Heading:String? = null var WasSuccessful:Boolean? = null var ModelState:Object? = null }