View Source StellarBase.XDR.Operations.SetTrustLineFlags (Elixir Stellar Base v0.16.0)

Representation of Stellar SetTrustLineFlags type.

Summary

Types

@type t() :: %StellarBase.XDR.Operations.SetTrustLineFlags{
  asset: StellarBase.XDR.Asset.t(),
  clear_flags: StellarBase.XDR.UInt32.t(),
  set_flags: StellarBase.XDR.UInt32.t(),
  trustor: StellarBase.XDR.AccountID.t()
}

Functions

Link to this function

new(trustor, asset, clear_flags, set_flags)

View Source
@spec new(
  trustor :: StellarBase.XDR.AccountID.t(),
  asset :: StellarBase.XDR.Asset.t(),
  clear_flags :: StellarBase.XDR.UInt32.t(),
  set_flags :: StellarBase.XDR.UInt32.t()
) :: t()