| Name | Type | Description | Notes |
|---|---|---|---|
| base_changes | Array<BranchComparisonChange> | Changes made to this resource type in the base branch since the branch was created. | [optional] |
| head_changes | Array<BranchComparisonChange> | Changes made to this resource type in the feature branch. | [optional] |
| conflicts | Hash<String, BranchComparisonDiffConflictsValue> | Conflicting changes present in both branches, keyed by conflict type. Possible conflict type keys: `changed_in_head_changed_in_base`, `added_in_head_added_in_base`, `changed_in_head_deleted_in_base`, `deleted_in_head_changed_in_base`. Each value contains `base` and `head` arrays of changed attribute objects. | [optional] |
require 'phrase'
instance = Phrase::BranchComparisonDiff.new(base_changes: nil,
head_changes: nil,
conflicts: nil)