class documentation

Base class for REST data that behaves like a dictionary.

Method __delitem__ Undocumented
Method __getitem__ Undocumented
Method __iter__ Undocumented
Method __len__ Undocumented
Method __repr__ Undocumented
Method __setitem__ Undocumented
Method get Undocumented
Method keys Undocumented
Method update Undocumented
Instance Variable _autosave Undocumented

Inherited from RESTBase:

Method __init__ No summary
Method save Undocumented
Property rest_data Get data from API and cache it (only once per instance).
Method _get Undocumented
Method _reset_cache Undocumented
Method _set Undocumented
Class Variable _properties the list of expected entity properties. This is required for API elements that behave like an object, with REST data accessed through attributes. If this value is None, the REST data is used to list available properties.
Class Variable _read_only_properties list of properties that cannot be written to (defaults to self_link only).
Class Variable _writable_properties list of properties that can be written to using a PATCH request. If this value is None, all properties are writable.
Instance Variable _changed_rest_data Undocumented
Instance Variable _connection Undocumented
Instance Variable _rest_data Undocumented
Instance Variable _url Undocumented
def __delitem__(self, key): (source)

Undocumented

def __getitem__(self, key): (source)

Undocumented

def __iter__(self): (source)

Undocumented

def __len__(self): (source)

Undocumented

def __setitem__(self, key, value): (source)

Undocumented

def get(self, key, default=None): (source)

Undocumented

def keys(self): (source)

Undocumented

def update(self, other): (source)

Undocumented