MCPcopy Create free account
hub / github.com/StackStorm/st2 / __str__

Method __str__

st2common/st2common/models/db/notification.py:60–67  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

58 on_complete = me.EmbeddedDocumentField(NotificationSubSchema)
59
60 def __str__(self):
61 result = []
62 result.append("NotifySchema@")
63 result.append(str(id(self)))
64 result.append('(on_complete="%s", ' % str(self.on_complete))
65 result.append('on_success="%s", ' % str(self.on_success))
66 result.append('on_failure="%s")' % str(self.on_failure))
67 return "".join(result)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected