Files
Client/lib/api/marianumcloud/autocomplete/autocomplete_response.dart
T
2026-05-08 20:12:40 +02:00

40 lines
995 B
Dart

import 'package:json_annotation/json_annotation.dart';
part 'autocomplete_response.g.dart';
@JsonSerializable(explicitToJson: true)
class AutocompleteResponse {
List<AutocompleteResponseObject> data;
AutocompleteResponse(this.data);
factory AutocompleteResponse.fromJson(Map<String, dynamic> json) =>
_$AutocompleteResponseFromJson(json);
Map<String, dynamic> toJson() => _$AutocompleteResponseToJson(this);
}
@JsonSerializable()
class AutocompleteResponseObject {
String id;
String label;
String? icon;
String? source;
String? status;
String? subline;
String? shareWithDisplayNameUniqe;
AutocompleteResponseObject(
this.id,
this.label,
this.icon,
this.source,
this.status,
this.subline,
this.shareWithDisplayNameUniqe,
);
factory AutocompleteResponseObject.fromJson(Map<String, dynamic> json) =>
_$AutocompleteResponseObjectFromJson(json);
Map<String, dynamic> toJson() => _$AutocompleteResponseObjectToJson(this);
}