sym.sdk.request_destination.SlackRequestDestination

class sym.sdk.request_destination.SlackRequestDestination(*, allow_self: bool = False, timeout: Optional[int] = None)

Bases: sym.sdk.request_destination.RequestDestination

A super-class for classes representing a destination in Slack.

classmethod parse_obj(obj)

Without this method override, Pydantic will not call our custom validator when parsing a RequestDestination directly (e.g. RequestDestination.parse_obj(…)). It will only be called when parsing fields that contain a RequestDestination object (e.g. SlackUserGroup.parse_obj(…), where the users field contains SlackUsers which are subclasses of RequestDestination).