Layer 220
TodoCompletion
A completed todo list item.
constructor
todoCompletion#4cc120b7 id:int completed_by:long date:int = TodoCompletion;
Parameters
| Name | Type | Description |
|---|---|---|
| Id | int | The ID of the completed item. |
| CompletedBy | long | ID of the user that completed the item. |
| Date | int | When was the item completed. |
Returns
TodoCompletionGogram Example
// Creating TodoCompletion constructor obj := &tg.TodoCompletion{ Id: 0, CompletedBy: int64(0), Date: 0, }