class ChatMemberOwner implements ChatMemberInterface

Represents a chat member that owns the chat and has all administrator privileges.

Methods

__construct(string $status, User $user, bool $is_anonymous, string|null $custom_title = null)

No description

string
getStatus()

The member's status in the chat, always “creator”.

getUser()

Information about the user.

bool
getIsAnonymous()

True, if the user's presence in the chat is hidden.

string|null
getCustomTitle()

Optional. Custom title for this user.

Details

at line 16
__construct(string $status, User $user, bool $is_anonymous, string|null $custom_title = null)

No description

Parameters

string $status
User $user
bool $is_anonymous
string|null $custom_title

at line 27
string getStatus()

The member's status in the chat, always “creator”.

Return Value

string

at line 35
User getUser()

Information about the user.

Return Value

User

at line 43
bool getIsAnonymous()

True, if the user's presence in the chat is hidden.

Return Value

bool

at line 51
string|null getCustomTitle()

Optional. Custom title for this user.

Return Value

string|null