Adds an :class:`.Indicator` object to the :attr:`indicators` collection.
(self, indicator)
| 110 | self.timestamp = timestamp |
| 111 | |
| 112 | def add_indicator(self, indicator): |
| 113 | """Adds an :class:`.Indicator` object to the :attr:`indicators` |
| 114 | collection. |
| 115 | |
| 116 | """ |
| 117 | if self.indicators is None: |
| 118 | self.indicators = Indicators() |
| 119 | self.indicators.append(indicator) |
| 120 | |
| 121 | def add_campaign(self, campaign): |
| 122 | """Adds a :class:`Campaign` object to the :attr:`campaigns` collection. |