BulkEditShareableEntityResponse.fromJson constructor
Implementation
factory BulkEditShareableEntityResponse.fromJson(Map<String, Object?> json) {
return BulkEditShareableEntityResponse(
action: BulkEditShareableEntityResponseAction.fromValue(
json[r'action'] as String? ?? ''),
entityErrors: json[r'entityErrors'] as Map<String, Object?>?,
);
}