Table of Contents

Class CredentialsUpdated

Namespace
Concordium.Sdk.Types
Assembly
Concordium.Sdk.dll

Account's credentials were updated.

public sealed record CredentialsUpdated : IAccountTransactionEffects, IEquatable<CredentialsUpdated>
Inheritance
CredentialsUpdated
Implements
Inherited Members

Constructors

CredentialsUpdated(IList<CredentialRegistrationId>, IList<CredentialRegistrationId>, AccountThreshold)

Account's credentials were updated.

public CredentialsUpdated(IList<CredentialRegistrationId> NewCredIds, IList<CredentialRegistrationId> RemovedCredIds, AccountThreshold NewThreshold)

Parameters

NewCredIds IList<CredentialRegistrationId>

The credential ids that were added.

RemovedCredIds IList<CredentialRegistrationId>

The credentials that were removed.

NewThreshold AccountThreshold

The (possibly) updated account threshold.

Properties

NewCredIds

The credential ids that were added.

public IList<CredentialRegistrationId> NewCredIds { get; init; }

Property Value

IList<CredentialRegistrationId>

NewThreshold

The (possibly) updated account threshold.

public AccountThreshold NewThreshold { get; init; }

Property Value

AccountThreshold

RemovedCredIds

The credentials that were removed.

public IList<CredentialRegistrationId> RemovedCredIds { get; init; }

Property Value

IList<CredentialRegistrationId>