Package com.restfb.types
Class InstagramUser
- java.lang.Object
-
- com.restfb.types.AbstractFacebookType
-
- com.restfb.types.FacebookType
-
- com.restfb.types.NamedFacebookType
-
- com.restfb.types.InstagramUser
-
- All Implemented Interfaces:
Serializable
public class InstagramUser extends NamedFacebookType
Represents the Instagram User API type.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.restfb.types.FacebookType
FacebookType.Metadata
-
-
Constructor Summary
Constructors Constructor Description InstagramUser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
getFollowCount()
Number of Instagram users that this Instagram user followsLong
getFollowedByCount()
Number of Instagram users that follow this Instagram userBoolean
getHasProfilePicture()
Indicates whether Instagram Account has a profile pictureBoolean
getIsPrivate()
Whether the Instagram user is privateBoolean
getIsPublished()
Whether the Instagram user is publishedLong
getMediaCount()
Number of active media posted by this Instagram userString
getProfilePic()
URI to user's Instagram profile pictureString
getUsername()
Instagram usernamevoid
setFollowCount(Long followCount)
Number of Instagram users that this Instagram user followsvoid
setFollowedByCount(Long followedByCount)
Number of Instagram users that follow this Instagram uservoid
setHasProfilePicture(Boolean hasProfilePicture)
Indicates whether Instagram Account has a profile picturevoid
setIsPrivate(Boolean isPrivate)
Whether the Instagram user is privatevoid
setIsPublished(Boolean isPublished)
Whether the Instagram user is publishedvoid
setMediaCount(Long mediaCount)
Number of active media posted by this Instagram uservoid
setProfilePic(String profilePic)
URI to user's Instagram profile picturevoid
setUsername(String username)
Instagram username-
Methods inherited from class com.restfb.types.NamedFacebookType
getName, setName
-
Methods inherited from class com.restfb.types.FacebookType
getId, getMetadata, getType, setId, setMetadata, setType
-
Methods inherited from class com.restfb.types.AbstractFacebookType
equals, hashCode, toString
-
-
-
-
Constructor Detail
-
InstagramUser
public InstagramUser()
-
-
Method Detail
-
getFollowCount
public Long getFollowCount()
Number of Instagram users that this Instagram user follows
-
setFollowCount
public void setFollowCount(Long followCount)
Number of Instagram users that this Instagram user follows
-
getFollowedByCount
public Long getFollowedByCount()
Number of Instagram users that follow this Instagram user
-
setFollowedByCount
public void setFollowedByCount(Long followedByCount)
Number of Instagram users that follow this Instagram user
-
getHasProfilePicture
public Boolean getHasProfilePicture()
Indicates whether Instagram Account has a profile picture
-
setHasProfilePicture
public void setHasProfilePicture(Boolean hasProfilePicture)
Indicates whether Instagram Account has a profile picture
-
getIsPrivate
public Boolean getIsPrivate()
Whether the Instagram user is private
-
setIsPrivate
public void setIsPrivate(Boolean isPrivate)
Whether the Instagram user is private
-
getIsPublished
public Boolean getIsPublished()
Whether the Instagram user is published
-
setIsPublished
public void setIsPublished(Boolean isPublished)
Whether the Instagram user is published
-
getMediaCount
public Long getMediaCount()
Number of active media posted by this Instagram user
-
setMediaCount
public void setMediaCount(Long mediaCount)
Number of active media posted by this Instagram user
-
getProfilePic
public String getProfilePic()
URI to user's Instagram profile picture
-
setProfilePic
public void setProfilePic(String profilePic)
URI to user's Instagram profile picture
-
getUsername
public String getUsername()
Instagram username
-
setUsername
public void setUsername(String username)
Instagram username
-
-