3.10.10. IProperties
- class buildbot.interfaces.IProperties
- Providers of this interface allow get and set access to a build’s properties. - getProperty(propname, default=None)
- Get a named property, returning the default value if the property is not found. 
 - hasProperty(propname)
- Determine whether the named property exists. 
 - setProperty(propname, value, source, runtime=False)
- Set a property’s value, also specifying the source for this value. 
 - getProperties()
- Get a - buildbot.process.properties.Propertiesinstance. The interface of this class is not finalized; where possible, use the other- IPropertiesmethods.