Camel.FolderQuotaInfo

Fields

Name Type Access Description
name str r/w name, aka identification, of the quota type
next object r/w a reference to a follwing Camel.FolderQuotaInfo
total int r/w what is the maximum quota to use
used int r/w how many bytes is currently in use

Methods

class new (name, used, total)
  clone ()
  free ()

Details

class Camel.FolderQuotaInfo

New in version 2.24.

classmethod new(name, used, total)
Parameters:
  • name (str) – Name of the quota.
  • used (int) – Current usage of the quota.
  • total (int) – Total available size of the quota.
Returns:

newly allocated Camel.FolderQuotaInfo structure with initialized values based on the parameters, with next member set to None.

Return type:

Camel.FolderQuotaInfo

New in version 2.24.

clone()
Return type:Camel.FolderQuotaInfo

Makes a copy of the given info and all next-s.

New in version 2.24.

free()

Frees this and all next objects.

New in version 2.24.