GuildRankClientPacket
    
            
            in package
            
        
    
    
    
Update a member's rank
Table of Contents
Properties
- $byteSize : int
 - $memberName : string
 - $rank : int
 - $sessionId : int
 
Methods
- __toString() : string
 - Returns a string representation of the object.
 - action() : int
 - Returns the packet action associated with this packet.
 - deserialize() : GuildRankClientPacket
 - Deserializes an instance of `GuildRankClientPacket` from the provided `EoReader`.
 - family() : int
 - Returns the packet family associated with this packet.
 - getByteSize() : int
 - Returns the size of the data that this was deserialized from.
 - getMemberName() : string
 - getRank() : int
 - getSessionId() : int
 - serialize() : void
 - Serializes an instance of `GuildRankClientPacket` to the provided `EoWriter`.
 - setByteSize() : void
 - Sets the size of the data that this was deserialized from.
 - setMemberName() : void
 - setRank() : void
 - setSessionId() : void
 - write() : void
 - Serializes and writes this packet to the provided EoWriter.
 
Properties
$byteSize
    private
        int
    $byteSize
     = 0
    
    
    
$memberName
    private
        string
    $memberName
     = ""
    
    
    
$rank
    private
        int
    $rank
    
    
    
    
$sessionId
    private
        int
    $sessionId
    
    
    
    
Methods
__toString()
Returns a string representation of the object.
    public
                    __toString() : string
    Return values
stringaction()
Returns the packet action associated with this packet.
    public
            static        action() : int
    Return values
int —The packet action associated with this packet.
deserialize()
Deserializes an instance of `GuildRankClientPacket` from the provided `EoReader`.
    public
            static        deserialize(EoReader $reader) : GuildRankClientPacket
    Parameters
- $reader : EoReader
 - 
                    
The reader that the data will be deserialized from.
 
Return values
GuildRankClientPacket —The deserialized data.
family()
Returns the packet family associated with this packet.
    public
            static        family() : int
    Return values
int —The packet family associated with this packet.
getByteSize()
Returns the size of the data that this was deserialized from.
    public
                    getByteSize() : int
    Return values
int —The size of the data that this was deserialized from.
getMemberName()
    public
                    getMemberName() : string
    Return values
stringgetRank()
    public
                    getRank() : int
    Return values
intgetSessionId()
    public
                    getSessionId() : int
    Return values
intserialize()
Serializes an instance of `GuildRankClientPacket` to the provided `EoWriter`.
    public
            static        serialize(EoWriter $writer, GuildRankClientPacket $data) : void
    Parameters
- $writer : EoWriter
 - 
                    
The writer that the data will be serialized to.
 - $data : GuildRankClientPacket
 - 
                    
The data to serialize.
 
setByteSize()
Sets the size of the data that this was deserialized from.
    public
                    setByteSize(int $byteSize) : void
    Parameters
- $byteSize : int
 - 
                    
The size of the data that this was deserialized from.
 
setMemberName()
    public
                    setMemberName(string $memberName) : void
    Parameters
- $memberName : string
 
setRank()
    public
                    setRank(int $rank) : void
    Parameters
- $rank : int
 
setSessionId()
    public
                    setSessionId(int $sessionId) : void
    Parameters
- $sessionId : int
 
write()
Serializes and writes this packet to the provided EoWriter.
    public
                    write(EoWriter $writer) : void
    Parameters
- $writer : EoWriter
 - 
                    
The writer that this packet will be written to.