Package com.restfb.types.instagram
Class IgUserProfile
- java.lang.Object
-
- com.restfb.types.AbstractFacebookType
-
- com.restfb.types.FacebookType
-
- com.restfb.types.NamedFacebookType
-
- com.restfb.types.instagram.IgUserProfile
-
- All Implemented Interfaces:
Serializable
public class IgUserProfile extends NamedFacebookType
Respresents the Instagram User Profile object as defined here- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.restfb.types.FacebookType
FacebookType.Metadata
-
-
Constructor Summary
Constructors Constructor Description IgUserProfile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getFollowerCount()
Follower count of the userBoolean
getIsBusinessFollowUser()
A flag indicating whether the business follow the user or notBoolean
getIsUserFollowBusiness()
A flag indicating whether the user follow the business or notBoolean
getIsVerifiedUser()
Verification status of the userString
getProfilePic()
URL to the Profile picture.String
getUsername()
The username for the customer's Instagram accountvoid
setFollowerCount(Integer followerCount)
Follower count of the uservoid
setIsBusinessFollowUser(Boolean isBusinessFollowUser)
A flag indicating whether the business follow the user or notvoid
setIsUserFollowBusiness(Boolean isUserFollowBusiness)
A flag indicating whether the user follow the business or notvoid
setIsVerifiedUser(Boolean isVerifiedUser)
Verification status of the uservoid
setProfilePic(String profilePic)
URL to the Profile picture.void
setUsername(String username)
The username for the customer's Instagram account-
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
-
IgUserProfile
public IgUserProfile()
-
-
Method Detail
-
getProfilePic
public String getProfilePic()
URL to the Profile picture. The URL will expire in a few days.
-
setProfilePic
public void setProfilePic(String profilePic)
URL to the Profile picture. The URL will expire in a few days.
-
getIsVerifiedUser
public Boolean getIsVerifiedUser()
Verification status of the user
-
setIsVerifiedUser
public void setIsVerifiedUser(Boolean isVerifiedUser)
Verification status of the user
-
getFollowerCount
public Integer getFollowerCount()
Follower count of the user
-
setFollowerCount
public void setFollowerCount(Integer followerCount)
Follower count of the user
-
getIsUserFollowBusiness
public Boolean getIsUserFollowBusiness()
A flag indicating whether the user follow the business or not
-
setIsUserFollowBusiness
public void setIsUserFollowBusiness(Boolean isUserFollowBusiness)
A flag indicating whether the user follow the business or not
-
getIsBusinessFollowUser
public Boolean getIsBusinessFollowUser()
A flag indicating whether the business follow the user or not
-
setIsBusinessFollowUser
public void setIsBusinessFollowUser(Boolean isBusinessFollowUser)
A flag indicating whether the business follow the user or not
-
getUsername
public String getUsername()
The username for the customer's Instagram account
-
setUsername
public void setUsername(String username)
The username for the customer's Instagram account
-
-