Skip to content

Commit

Permalink
Add previous_filename field to GitHubFile
Browse files Browse the repository at this point in the history
  • Loading branch information
Fs00 authored and maniac103 committed Dec 13, 2021
1 parent d722a92 commit 7f6bcc6
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ public abstract class GitHubFile implements Parcelable {
@Nullable
public abstract String filename();

@Json(name = "previous_filename")
@Nullable
public abstract String previousFilename();

@Nullable
public abstract String status();

Expand Down Expand Up @@ -70,6 +74,8 @@ public static Builder builder() {
public abstract static class Builder {
public abstract Builder filename(String filename);

public abstract Builder previousFilename(String previousFilename);

public abstract Builder status(String status);

public abstract Builder patch(String patch);
Expand Down

0 comments on commit 7f6bcc6

Please sign in to comment.