From 2f56d9ca6af0e7d3340ba43d3bfa35c1c8f734a7 Mon Sep 17 00:00:00 2001 From: Norbert Bartels Date: Wed, 5 May 2021 08:21:16 +0200 Subject: [PATCH] Issue #1152 - wrong comment fixed --- src/main/lombok/com/restfb/types/instagram/IgMedia.java | 2 +- src/main/lombok/com/restfb/types/instagram/IgMediaChild.java | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/lombok/com/restfb/types/instagram/IgMedia.java b/src/main/lombok/com/restfb/types/instagram/IgMedia.java index 3e74a79e8..92ba5d898 100644 --- a/src/main/lombok/com/restfb/types/instagram/IgMedia.java +++ b/src/main/lombok/com/restfb/types/instagram/IgMedia.java @@ -72,7 +72,7 @@ public class IgMedia extends IgMediaChild { private Long likeCount; /** - * Media type. Can be CAROUSEL_ALBUM, IMAGE, or VIDEO. + * Surface where the media is published. Can be AD, FEED, IGTV, or STORY. */ @Getter @Setter diff --git a/src/main/lombok/com/restfb/types/instagram/IgMediaChild.java b/src/main/lombok/com/restfb/types/instagram/IgMediaChild.java index 046db086a..05e7ce09b 100644 --- a/src/main/lombok/com/restfb/types/instagram/IgMediaChild.java +++ b/src/main/lombok/com/restfb/types/instagram/IgMediaChild.java @@ -38,6 +38,9 @@ public class IgMediaChild extends FacebookType { @Facebook("ig_id") private String igId; + /** + * Media type. Can be CAROUSEL_ALBUM, IMAGE, or VIDEO. + */ @Getter @Setter @Facebook("media_type")