Java class for notifications complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="notifications"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="messages" type="{http://api.facebook.com/1.0/}notification_count"/> <element name="pokes" type="{http://api.facebook.com/1.0/}notification_count"/> <element name="shares" type="{http://api.facebook.com/1.0/}notification_count"/> <element name="friend_requests"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence maxOccurs="unbounded" minOccurs="0"> <element name="uid" type="{http://api.facebook.com/1.0/}uid" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType> </element> <element name="group_invites"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence maxOccurs="unbounded" minOccurs="0"> <element name="gid" type="{http://api.facebook.com/1.0/}gid" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType> </element> <element name="event_invites"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence maxOccurs="unbounded" minOccurs="0"> <element name="eid" type="{http://api.facebook.com/1.0/}eid" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
Gets the value of the eventInvites property.returnpossible object is {@link Notifications.EventInvites } return eventInvites;
return eventInvites;
Gets the value of the friendRequests property.returnpossible object is {@link Notifications.FriendRequests } return friendRequests;
return friendRequests;
Gets the value of the groupInvites property.returnpossible object is {@link Notifications.GroupInvites } return groupInvites;
return groupInvites;
Gets the value of the messages property.returnpossible object is {@link NotificationCount } return messages;
return messages;
Gets the value of the pokes property.returnpossible object is {@link NotificationCount } return pokes;
return pokes;
Gets the value of the shares property.returnpossible object is {@link NotificationCount } return shares;
return shares;
Sets the value of the eventInvites property.paramvalue allowed object is {@link Notifications.EventInvites } this.eventInvites = value;
this.eventInvites = value;
Sets the value of the friendRequests property.paramvalue allowed object is {@link Notifications.FriendRequests } this.friendRequests = value;
this.friendRequests = value;
Sets the value of the groupInvites property.paramvalue allowed object is {@link Notifications.GroupInvites } this.groupInvites = value;
this.groupInvites = value;
Sets the value of the messages property.paramvalue allowed object is {@link NotificationCount } this.messages = value;
this.messages = value;
Sets the value of the pokes property.paramvalue allowed object is {@link NotificationCount } this.pokes = value;
this.pokes = value;
Sets the value of the shares property.paramvalue allowed object is {@link NotificationCount } this.shares = value;
this.shares = value;