PYTHON_METHOD_NOARGS(ptAgeVault,getAgeInfo,"Returns a ptVaultAgeInfoNode of the this Age"),
PYTHON_METHOD_NOARGS(ptAgeVault,getAgeDevicesFolder,"Returns a ptVaultFolderNode of the inboxes for the devices in this Age."),
PYTHON_METHOD_NOARGS(ptAgeVault,getSubAgesFolder,"Returns a ptVaultFolderNode of sub Age's folder."),
PYTHON_METHOD_NOARGS(ptAgeVault,getChronicleFolder,"Returns a ptVaultFolderNode"),
PYTHON_METHOD_NOARGS(ptAgeVault,getAgesIOwnFolder,"(depreciated, use getBookshelfFolder) Returns a ptVaultFolderNode that contain the Ages I own"),
PYTHON_METHOD_NOARGS(ptAgeVault,getBookshelfFolder,"Personal age only: Returns a ptVaultFolderNode that contains the owning player's AgesIOwn age list"),
PYTHON_METHOD_NOARGS(ptAgeVault,getPeopleIKnowAboutFolder,"Returns a ptVaultPlayerInfoListNode of the players the Age knows about(?)."),
PYTHON_METHOD_NOARGS(ptAgeVault,getPublicAgesFolder,"Returns a ptVaultFolderNode that contains all the public Ages"),
PYTHON_METHOD(ptAgeVault,getSubAgeLink,"Params: ageInfo\nReturns a ptVaultAgeLinkNode to 'ageInfo' (a ptAgeInfoStruct) for this Age."),
PYTHON_METHOD_NOARGS(ptAgeVault,getAgeGuid,"Returns the current Age's guid as a string."),
PYTHON_METHOD(ptAgeVault,addDevice,"Params: deviceName,cb=None,cbContext=0\nAdds a device to the age"),
PYTHON_METHOD(ptAgeVault,removeDevice,"Params: deviceName\nRemoves a device from the age"),
PYTHON_METHOD(ptAgeVault,hasDevice,"Params: deviceName\nDoes a device with this name exist?"),
PYTHON_METHOD(ptAgeVault,getDevice,"Params: deviceName\nReturns the specified device (ptVaultTextNoteNode)"),
PYTHON_METHOD(ptAgeVault,setDeviceInbox,"Params: deviceName,inboxName,cb=None,cbContext=0\nSet's the device's inbox"),
PYTHON_METHOD(ptAgeVault,getDeviceInbox,"Params: deviceName\nReturns a ptVaultFolderNode of the inbox for the named device in this age."),
PYTHON_METHOD(ptAgeVault,findChronicleEntry,"Params: entryName\nReturns the named ptVaultChronicleNode"),
PYTHON_METHOD(ptAgeVault,addChronicleEntry,"Params: name,type,value\nAdds a chronicle entry with the specified type and value"),
PYTHON_METHOD_NOARGS(ptAgeVault,getAgeSDL,"Returns the age's SDL (ptSDLStateDataRecord)"),
PYTHON_METHOD(ptAgeVault,updateAgeSDL,"Params: pyrec\nUpdates the age's SDL"),
PYTHON_END_METHODS_TABLE;
// Type structure definition
PLASMA_DEFAULT_TYPE(ptAgeVault,"Accessor class to the Age's vault");
// required functions for PyObject interoperability