Layer 220
constructor
chatParticipantAdmin#a0933f5b user_id:long inviter_id:long date:int = ChatParticipant;

Parameters

Name Type Description
UserId long ID of a group member that is admin
InviterId long ID of the user that added the member to the group
Date int Date when the user was added

Returns

ChatParticipant

Gogram Example

// Creating ChatParticipantAdmin constructor
obj := &tg.ChatParticipantAdmin{
    UserId: int64(0),
    InviterId: int64(0),
    Date: 0,
}