Layer 224
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

Returns

ChatParticipant

Gogram Example

// Creating ChatParticipantCreator constructor
obj := &tg.ChatParticipantCreator{
    UserId: int64(1234567890),

    // Optional fields:
    // Rank: "Hello, World!",
}