github.com/tada-team/tdproto@v1.51.57/remind.go (about)

     1  package tdproto
     2  
     3  // Remind
     4  type Remind struct {
     5  	// Remind id
     6  	Uid string `json:"uid"`
     7  
     8  	// Chat id
     9  	Chat JID `json:"chat"`
    10  
    11  	// Activation time, iso
    12  	FireAt ISODateTimeString `json:"fire_at"`
    13  
    14  	// Comment, if any
    15  	Comment string `json:"comment,omitempty"`
    16  }
    17  
    18  // Remind deleted message
    19  type DeletedRemind struct {
    20  	// Remind id
    21  	Uid string `json:"uid"`
    22  }