Module base :: Class AxObject
[hide private]
[frames] | no frames]

Class AxObject

source code

object --+
         |
        AxObject
Known Subclasses:

Base Object for aXAPI Objects

Instance Methods [hide private]
 
__init__(self, **params)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
_set_properties(self, **params) source code
 
__getattr__(self, name) source code
 
__setattr__(self, name, values)
x.__setattr__('name', value) <==> x.name = value
source code
 
get(self, key, *args, **kwargs) source code
 
__getitem__(self, key) source code
 
__setitem__(self, key, value) source code
 
__str__(self)
str(x)
source code
 
__repr__(self)
repr(x)
source code
 
getRequestPostDataJson(self) source code
 
_generateListInUrl(self, key_name_str, val_name, aList) source code
 
_generateDictInUrl(self, key_name_str, aDict) source code
 
_appendString(self, file_str, is_first, string) source code
 
getObjectDict(self) source code
 
getRequestPostDataXml(self) source code
 
dump(self)
Debug purpose to print out the AX object internal data.
source code
 
getInfo(self)
Returns object information as a dictionary.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __sizeof__, __subclasshook__

Class Variables [hide private]
  __display__ = []
  __obj_name__ = ''
  __obj_readonly__ = False
  __xml_convrt__ = []
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, **params)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__setattr__(self, name, values)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

getInfo(self)

source code 

Returns object information as a dictionary. Should be overridden.