Last active
June 5, 2020 05:49
-
-
Save kaantas/b323ca52eb06f6ed0a7e7a4db3bdbdb7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import lombok.Data; | |
@Data | |
public class TrendyolBitbucketResponse { | |
private Diff[] diffs; | |
@Data | |
public static class Diff { | |
private ChangeSet source; | |
private ChangeSet destination; | |
} | |
@Data | |
public static class ChangeSet { | |
private String[] components; | |
private String name; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment