BatchGetObjectInformationResponse.fromJson constructor
Implementation
factory BatchGetObjectInformationResponse.fromJson(
Map<String, dynamic> json) {
return BatchGetObjectInformationResponse(
objectIdentifier: json['ObjectIdentifier'] as String?,
schemaFacets: (json['SchemaFacets'] as List?)
?.whereNotNull()
.map((e) => SchemaFacet.fromJson(e as Map<String, dynamic>))
.toList(),
);
}