BulkEditShareableEntityResponse.fromJson constructor

BulkEditShareableEntityResponse.fromJson(
  1. Map<String, Object?> json
)

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?>?,
  );
}