GetClientResponse.fromJson(Map<String, dynamic> json) { if (json['Client'] != null) { client = []; json['Client'].forEach((v) { client!.add(Client.fromJson(v)); }); } }