github.com/hyperledger/aries-framework-go@v0.3.2/pkg/didcomm/common/model/event.go (about)

     1  /*
     2  Copyright Avast Software. All Rights Reserved.
     3  
     4  SPDX-License-Identifier: Apache-2.0
     5  */
     6  
     7  package model
     8  
     9  // Event properties related api. This can be used to cast Generic event properties to DID Exchange specific props.
    10  type Event interface {
    11  	// connection ID
    12  	ConnectionID() string
    13  
    14  	// invitation ID
    15  	InvitationID() string
    16  }