Layer 220
constructor
chatParticipant#c02d4007 user_id:long inviter_id:long date:int = ChatParticipant;

Parameters

Name Type Description
UserId long Member user ID
InviterId long ID of the user that added the member to the group
Date int Date added to the group

Returns

ChatParticipant

Gogram Example

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