Required role: | superadmin |
GET | /superadmin/company/inactive/report | Retrieves a report of inactive companies with their status. | This endpoint does not modify any data. |
---|
import 'package:servicestack/servicestack.dart';
enum InactivityAction
{
ActivityReminder,
FinalWarning,
Delete,
}
class InactiveCompanyResult implements IConvertible
{
String? CompanyId;
DateTime? LastActivityDate;
DateTime? LastActivityNotificationDate;
DateTime? DeletionTime;
InactivityAction? Action;
InactiveCompanyResult({this.CompanyId,this.LastActivityDate,this.LastActivityNotificationDate,this.DeletionTime,this.Action});
InactiveCompanyResult.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
CompanyId = json['CompanyId'];
LastActivityDate = JsonConverters.fromJson(json['LastActivityDate'],'DateTime',context!);
LastActivityNotificationDate = JsonConverters.fromJson(json['LastActivityNotificationDate'],'DateTime',context!);
DeletionTime = JsonConverters.fromJson(json['DeletionTime'],'DateTime',context!);
Action = JsonConverters.fromJson(json['Action'],'InactivityAction',context!);
return this;
}
Map<String, dynamic> toJson() => {
'CompanyId': CompanyId,
'LastActivityDate': JsonConverters.toJson(LastActivityDate,'DateTime',context!),
'LastActivityNotificationDate': JsonConverters.toJson(LastActivityNotificationDate,'DateTime',context!),
'DeletionTime': JsonConverters.toJson(DeletionTime,'DateTime',context!),
'Action': JsonConverters.toJson(Action,'InactivityAction',context!)
};
getTypeName() => "InactiveCompanyResult";
TypeContext? context = _ctx;
}
class InactiveCompaniesResponse implements IConvertible
{
List<InactiveCompanyResult>? ProcessedCompanies;
InactiveCompaniesResponse({this.ProcessedCompanies});
InactiveCompaniesResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ProcessedCompanies = JsonConverters.fromJson(json['ProcessedCompanies'],'List<InactiveCompanyResult>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ProcessedCompanies': JsonConverters.toJson(ProcessedCompanies,'List<InactiveCompanyResult>',context!)
};
getTypeName() => "InactiveCompaniesResponse";
TypeContext? context = _ctx;
}
class GetInactiveCompaniesReport implements IConvertible
{
int? Skip;
int? Take;
GetInactiveCompaniesReport({this.Skip,this.Take});
GetInactiveCompaniesReport.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Skip = json['Skip'];
Take = json['Take'];
return this;
}
Map<String, dynamic> toJson() => {
'Skip': Skip,
'Take': Take
};
getTypeName() => "GetInactiveCompaniesReport";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: <String, TypeInfo> {
'InactivityAction': TypeInfo(TypeOf.Enum, enumValues:InactivityAction.values),
'InactiveCompanyResult': TypeInfo(TypeOf.Class, create:() => InactiveCompanyResult()),
'InactiveCompaniesResponse': TypeInfo(TypeOf.Class, create:() => InactiveCompaniesResponse()),
'List<InactiveCompanyResult>': TypeInfo(TypeOf.Class, create:() => <InactiveCompanyResult>[]),
'GetInactiveCompaniesReport': TypeInfo(TypeOf.Class, create:() => GetInactiveCompaniesReport()),
});
Dart GetInactiveCompaniesReport DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /superadmin/company/inactive/report HTTP/1.1 Host: testapi.bokamera.se Accept: text/jsonl
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"ProcessedCompanies":[{"Action":"ActivityReminder"}]}