// To parse this JSON data, do // // final assignArea = assignAreaFromJson(jsonString); import 'package:unit2/model/rbac/station_type.dart'; import 'package:unit2/model/roles/pass_check/station_assign_area.dart'; class RbacStation { final int? id; final String? stationName; final StationType? stationType; final int? hierarchyOrderNo; final String? headPosition; final GovernmentAgency? governmentAgency; final String? acronym; final int? parentStation; final String? code; final String? fullcode; final List? childStationInfo; final bool? islocationUnderParent; final int? mainParentStation; final String? description; final bool? ishospital; final bool? isactive; final bool? sellingStation; RbacStation({ required this.id, required this.stationName, required this.stationType, required this.hierarchyOrderNo, required this.headPosition, required this.governmentAgency, required this.acronym, required this.parentStation, required this.code, required this.fullcode, required this.childStationInfo, required this.islocationUnderParent, required this.mainParentStation, required this.description, required this.ishospital, required this.isactive, required this.sellingStation, }); factory RbacStation.fromJson(Map json) => RbacStation( id: json["id"], stationName: json["station_name"], stationType:json["station_type"] ==null?null: StationType.fromJson(json["station_type"]), hierarchyOrderNo: json["hierarchy_order_no"], headPosition: json["head_position"], governmentAgency: json["government_agency"] == null?null:GovernmentAgency.fromJson(json["government_agency"]), acronym: json["acronym"], parentStation: json["parent_station"], code: json["code"], fullcode: json["fullcode"], childStationInfo: null, islocationUnderParent: json["islocation_under_parent"], mainParentStation: json["main_parent_station"], description: json["description"], ishospital: json["ishospital"], isactive: json["isactive"], sellingStation: json["selling_station"], ); Map toJson() => { "id": id, "station_name": stationName, "station_type": stationType?.toJson(), "hierarchy_order_no": hierarchyOrderNo, "head_position": headPosition, "government_agency": governmentAgency?.toJson(), "acronym": acronym, "parent_station": parentStation, "code": code, "fullcode": fullcode, "child_station_info": List.from(childStationInfo!.map((x) => x.toJson())), "islocation_under_parent": islocationUnderParent, "main_parent_station": mainParentStation, "description": description, "ishospital": ishospital, "isactive": isactive, "selling_station": sellingStation, }; } class ChildStationInfo { final int? id; final String? stationName; final String? acroym; bool? motherStation; ChildStationInfo({ required this.id, required this.stationName, required this.acroym, this.motherStation }); factory ChildStationInfo.fromJson(Map json) => ChildStationInfo( id: json["id"], stationName: json["station_name"], acroym: json["acroym"], ); Map toJson() => { "id": id, "station_name": stationName, "acroym": acroym, }; } class GovernmentAgency { final int? agencyid; final String? agencyname; final int? agencycatid; final bool? privateEntity; final int? contactinfoid; GovernmentAgency({ required this.agencyid, required this.agencyname, required this.agencycatid, required this.privateEntity, required this.contactinfoid, }); factory GovernmentAgency.fromJson(Map json) => GovernmentAgency( agencyid: json["agencyid"], agencyname: json["agencyname"], agencycatid: json["agencycatid"], privateEntity: json["private_entity"], contactinfoid: json["contactinfoid"], ); Map toJson() => { "agencyid": agencyid, "agencyname": agencyname, "agencycatid": agencycatid, "private_entity": privateEntity, "contactinfoid": contactinfoid, }; }