Source code for pyrobale.objects.polloption [docs] class PollOption: def __init__( self, persistent_id: str, text: str, voter_count: int, **kwargs ): [docs] self.persistent_id = persistent_id [docs] self.text = text [docs] self.voter_count = voter_count