Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __init__(self, *, text: str=None, tokenized_text=None, intent_predictions=None, entity_predictions=None, **kwargs) -> None:
super(IntentsSuggestionExample, self).__init__(**kwargs)
self.text = text
self.tokenized_text = tokenized_text
self.intent_predictions = intent_predictions
self.entity_predictions = entity_predictions