Layer 224
TodoCompletionObj
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 TodoCompletionObj constructor obj := &tg.TodoCompletionObj{ Id: 42, CompletedBy: int64(1234567890), Date: 42, }