github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/participation_updates.go (about)

     1  package models
     2  
     3  // ParticipationUpdates participation account data that needs to be checked/acted
     4  // on by the network.
     5  type ParticipationUpdates struct {
     6  	// ExpiredParticipationAccounts (partupdrmv) a list of online accounts that needs
     7  	// to be converted to offline since their participation key expired.
     8  	ExpiredParticipationAccounts []string `json:"expired-participation-accounts,omitempty"`
     9  }