Layer 224
constructor
channelAdminLogEvent#1fad68cd id:long date:int user_id:long action:ChannelAdminLogEventAction = ChannelAdminLogEvent;

Parameters

Name Type Description
Id long Event ID
Date int Date
UserId long User ID
Action ChannelAdminLogEventAction Action

Gogram Example

// Creating ChannelAdminLogEventObj constructor
obj := &tg.ChannelAdminLogEventObj{
    Id: int64(1234567890),
    Date: 42,
    UserId: int64(1234567890),
    Action: &tg.ChannelAdminLogEventAction{},
}