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

EventMember

public class EventMember extends Object

Java class for event_member complex type.

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

<complexType name="event_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="oid" type="{http://api.facebook.com/1.0/}eid"/>
<element name="attending" type="{http://www.w3.org/2001/XMLSchema}string"/>
</sequence>
</restriction>
</complexContent>
</complexType>

Fields Summary
protected long
uid
protected long
oid
protected String
attending
Constructors Summary
Methods Summary
public synchronized java.lang.StringgetAttending()
Gets the value of the attending property.

return
possible object is {@link String }

        return attending;
    
public synchronized longgetOid()
Gets the value of the oid property.

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

        return uid;
    
public synchronized voidsetAttending(java.lang.String value)
Sets the value of the attending property.

param
value allowed object is {@link String }

        this.attending = value;
    
public synchronized voidsetOid(long value)
Sets the value of the oid property.

        this.oid = value;
    
public synchronized voidsetUid(int value)
Sets the value of the uid property.

        this.uid = value;