Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add check for Page New Experience #1243

Merged
merged 1 commit into from Sep 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/main/lombok/com/restfb/types/Page.java
Expand Up @@ -1396,6 +1396,14 @@ public class Page extends CategorizedFacebookType implements HasProfilePicture {
@Facebook("screennames")
private List<ScreenName> screenNames = new ArrayList<>();

/**
* Page is utilising the new page experiece or not
*/
@Getter
@Setter
@Facebook("has_transitioned_to_new_page_experience")
private Boolean hasTransitionedToNewPageExperience;

private static final long serialVersionUID = 2L;

public static class ScreenName extends AbstractFacebookType {
Expand Down