Layer 227
constructor
chatParticipantCreator#e1f867b8 flags:# user_id:long rank:flags.0?string = ChatParticipant;

Parameters

Name Type Description
UserId long ID of the user that created the group
Rank flags .0? string The participant's tag.

Returns

ChatParticipant

Gogram Example

// Creating ChatParticipantCreator constructor
obj := &tg.ChatParticipantCreator{
    UserId: int64(1234567890),
    Rank: "Hello, World!",
}