FileDocCategorySizeDatePackage
GroupMember.javaAPI DocGoogle Facebook API v1.46069Tue Oct 23 20:16:10 BST 2007com.facebook.api.schema

GroupMember

public class GroupMember extends Object

Java class for group_member complex type.

The following schema fragment specifies the expected content contained within this class.

<complexType name="group_member">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="uid" type="{http://api.facebook.com/1.0/}uid"/>
<element name="gid" type="{http://api.facebook.com/1.0/}gid"/>
<element name="positions">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence maxOccurs="unbounded" minOccurs="0">
<element name="member_type" type="{http://api.facebook.com/1.0/}member_type" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" />
</restriction>
</complexContent>
</complexType>
</element>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected long
uid
protected long
gid
protected Positions
positions
Constructors Summary
Methods Summary
public synchronized longgetGid()
Gets the value of the gid property.

        return gid;
    
public synchronized com.facebook.api.schema.GroupMember$PositionsgetPositions()
Gets the value of the positions property.

return
possible object is {@link GroupMember.Positions }

        return positions;
    
public synchronized longgetUid()
Gets the value of the uid property.

        return uid;
    
public synchronized voidsetGid(long value)
Sets the value of the gid property.

        this.gid = value;
    
public synchronized voidsetPositions(com.facebook.api.schema.GroupMember$Positions value)
Sets the value of the positions property.

param
value allowed object is {@link GroupMember.Positions }

        this.positions = value;
    
public synchronized voidsetUid(long value)
Sets the value of the uid property.

        this.uid = value;