ListResolverQueryLogConfigAssociationsResponse.fromJson constructor
Implementation
factory ListResolverQueryLogConfigAssociationsResponse.fromJson(
Map<String, dynamic> json) {
return ListResolverQueryLogConfigAssociationsResponse(
nextToken: json['NextToken'] as String?,
resolverQueryLogConfigAssociations:
(json['ResolverQueryLogConfigAssociations'] as List?)
?.whereNotNull()
.map((e) => ResolverQueryLogConfigAssociation.fromJson(
e as Map<String, dynamic>))
.toList(),
totalCount: json['TotalCount'] as int?,
totalFilteredCount: json['TotalFilteredCount'] as int?,
);
}