is_visible property

is_visible property

Represents if the comment is visible or not.

Example


if comment1.is_visible:
    pass

Definition:

@property
def is_visible(self):
    ...
@is_visible.setter
def is_visible(self, value):
    ...

See Also