initial property

Comment.initial property

Returns or sets the initials of the user associated with a specific comment.

@property
def initial(self) -> str:
    ...

@initial.setter
def initial(self, value: str):
    ...

Remarks

Cannot be None.

Default is empty string.

See Also