DataUpdatedEffectResponse

public class DataUpdatedEffectResponse : EffectResponse, @unchecked Sendable

Represents a data entry update effect. This effect occurs when an existing key-value pair in an account’s data entries is modified. Account data entries allow accounts to store arbitrary data on the ledger. Triggered by the Manage Data operation. See Stellar developer docs

  • The name (key) of the data entry updated.

    Declaration

    Swift

    public let name: String
  • The base64-encoded value of the data entry after the update.

    Declaration

    Swift

    public let value: String
  • Declaration

    Swift

    public required init(from decoder: Decoder) throws