Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kaantas/b323ca52eb06f6ed0a7e7a4db3bdbdb7 to your computer and use it in GitHub Desktop.
Save kaantas/b323ca52eb06f6ed0a7e7a4db3bdbdb7 to your computer and use it in GitHub Desktop.
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