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

     1  package tdproto
     2  
     3  // ActionType for server.processing event
     4  type ActionType string
     5  
     6  const (
     7  	// ActionTypeContactImport ...
     8  	ActionTypeContactImport ActionType = "contact_import"
     9  
    10  	// ActionTypeTaskImport ...
    11  	ActionTypeTaskImport ActionType = "task_import"
    12  
    13  	// ActionTypeArchiveUnpacking ...
    14  	ActionTypeArchiveUnpacking ActionType = "archive_unpacking"
    15  
    16  	// ActionTypeGenerateChat ...
    17  	ActionTypeGenerateChat ActionType = "generate_chat"
    18  )
    19  
    20  func (at ActionType) String() string { return string(at) }