Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 1.18 KB

File metadata and controls

21 lines (14 loc) · 1.18 KB

Phrase::BranchComparisonDiff

Properties

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]

Code Sample

require 'Phrase'

instance = Phrase::BranchComparisonDiff.new(base_changes: null,
                                 head_changes: null,
                                 conflicts: null)