| GET | /galaxy/mylegalhand/history | Get the history of My Legal Hand Galaxy panic activations. |
|---|
import 'package:servicestack/servicestack.dart';
class ApiServiceRequest implements IServiceRequest, IHasApiKey, IConvertible
{
/**
* The API Key required for authentication
*/
// @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true)
String? ApiKey;
ApiServiceRequest({this.ApiKey});
ApiServiceRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ApiKey = json['ApiKey'];
return this;
}
Map<String, dynamic> toJson() => {
'ApiKey': ApiKey
};
getTypeName() => "ApiServiceRequest";
TypeContext? context = _ctx;
}
class BaseActivationHistoryRequest extends ApiServiceRequest implements IConvertible
{
/**
* ID Number of the user making this request.
*/
// @ApiMember(Description="ID Number of the user making this request.", IsRequired=true)
String? IdNumber;
BaseActivationHistoryRequest({this.IdNumber});
BaseActivationHistoryRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
IdNumber = json['IdNumber'];
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'IdNumber': IdNumber
});
getTypeName() => "BaseActivationHistoryRequest";
TypeContext? context = _ctx;
}
class ApiServiceResponse implements IServiceResponse, IConvertible
{
String? Description;
String? Heading;
bool? WasSuccessful;
dynamic? ModelState;
ApiServiceResponse({this.Description,this.Heading,this.WasSuccessful,this.ModelState});
ApiServiceResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Description = json['Description'];
Heading = json['Heading'];
WasSuccessful = json['WasSuccessful'];
ModelState = JsonConverters.fromJson(json['ModelState'],'dynamic',context!);
return this;
}
Map<String, dynamic> toJson() => {
'Description': Description,
'Heading': Heading,
'WasSuccessful': WasSuccessful,
'ModelState': JsonConverters.toJson(ModelState,'dynamic',context!)
};
getTypeName() => "ApiServiceResponse";
TypeContext? context = _ctx;
}
class ActivationHistoryData implements IConvertible
{
/**
* Date and Time of the activation in ISO 8601 format.
*/
// @ApiMember(Description="Date and Time of the activation in ISO 8601 format.")
String? DateActivated;
/**
* Latitude of the activation location.
*/
// @ApiMember(Description="Latitude of the activation location.")
double? Latitude;
/**
* Longitude of the activation location.
*/
// @ApiMember(Description="Longitude of the activation location.")
double? Longitude;
ActivationHistoryData({this.DateActivated,this.Latitude,this.Longitude});
ActivationHistoryData.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
DateActivated = json['DateActivated'];
Latitude = JsonConverters.toDouble(json['Latitude']);
Longitude = JsonConverters.toDouble(json['Longitude']);
return this;
}
Map<String, dynamic> toJson() => {
'DateActivated': DateActivated,
'Latitude': Latitude,
'Longitude': Longitude
};
getTypeName() => "ActivationHistoryData";
TypeContext? context = _ctx;
}
class ActivationHistoryResponse extends ApiServiceResponse implements IConvertible
{
/**
* Is the requested product set up and enabled on Galaxy.
*/
// @ApiMember(Description="Is the requested product set up and enabled on Galaxy.")
bool? ProductAvailable;
/**
* 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.")
bool? UserHasAccess;
/**
* A list of activation history instances, ordered by most recent first.
*/
// @ApiMember(Description="A list of activation history instances, ordered by most recent first.")
List<ActivationHistoryData>? ActivationHistory;
ActivationHistoryResponse({this.ProductAvailable,this.UserHasAccess,this.ActivationHistory});
ActivationHistoryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
ProductAvailable = json['ProductAvailable'];
UserHasAccess = json['UserHasAccess'];
ActivationHistory = JsonConverters.fromJson(json['ActivationHistory'],'List<ActivationHistoryData>',context!);
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'ProductAvailable': ProductAvailable,
'UserHasAccess': UserHasAccess,
'ActivationHistory': JsonConverters.toJson(ActivationHistory,'List<ActivationHistoryData>',context!)
});
getTypeName() => "ActivationHistoryResponse";
TypeContext? context = _ctx;
}
class MyLegalHandHistoryRequest extends BaseActivationHistoryRequest implements IConvertible
{
MyLegalHandHistoryRequest();
MyLegalHandHistoryRequest.fromJson(Map<String, dynamic> json) : super.fromJson(json);
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
return this;
}
Map<String, dynamic> toJson() => super.toJson();
getTypeName() => "MyLegalHandHistoryRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'galaxymobile.api.client.prod.86degrees.com', types: <String, TypeInfo> {
'ApiServiceRequest': TypeInfo(TypeOf.Class, create:() => ApiServiceRequest()),
'BaseActivationHistoryRequest': TypeInfo(TypeOf.Class, create:() => BaseActivationHistoryRequest()),
'ApiServiceResponse': TypeInfo(TypeOf.Class, create:() => ApiServiceResponse()),
'ActivationHistoryData': TypeInfo(TypeOf.Class, create:() => ActivationHistoryData()),
'ActivationHistoryResponse': TypeInfo(TypeOf.Class, create:() => ActivationHistoryResponse()),
'List<ActivationHistoryData>': TypeInfo(TypeOf.Class, create:() => <ActivationHistoryData>[]),
'MyLegalHandHistoryRequest': TypeInfo(TypeOf.Class, create:() => MyLegalHandHistoryRequest()),
});
Dart MyLegalHandHistoryRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /galaxy/mylegalhand/history HTTP/1.1 Host: galaxymobile.api.client.prod.86degrees.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ProductAvailable: False,
UserHasAccess: False,
ActivationHistory:
[
{
}
],
Description: String,
Heading: String,
WasSuccessful: False,
ModelState: {}
}