Packet descriptions
This commit is contained in:
30
lib/classes/packets/FetchInventoryDescendents.ts
Normal file
30
lib/classes/packets/FetchInventoryDescendents.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
// This file has been automatically generated by writePacketClasses.js
|
||||
|
||||
import {UUID} from '../UUID';
|
||||
import {MessageFlags} from '../../enums/MessageFlags';
|
||||
import {Packet} from '../Packet';
|
||||
|
||||
export class FetchInventoryDescendentsPacket implements Packet
|
||||
{
|
||||
name = 'FetchInventoryDescendents';
|
||||
flags = MessageFlags.Zerocoded | MessageFlags.FrequencyLow;
|
||||
id = 4294902037;
|
||||
|
||||
AgentData: {
|
||||
AgentID: UUID;
|
||||
SessionID: UUID;
|
||||
};
|
||||
InventoryData: {
|
||||
FolderID: UUID;
|
||||
OwnerID: UUID;
|
||||
SortOrder: number;
|
||||
FetchFolders: boolean;
|
||||
FetchItems: boolean;
|
||||
};
|
||||
|
||||
getSize(): number
|
||||
{
|
||||
return 70;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user