View Source Stellar.TxBuild.ClaimPredicate (Elixir Stellar SDK v0.22.0)

ClaimPredicate struct definition.

Summary

Types

@type predicate() :: :unconditional | :conditional
@type t() :: %Stellar.TxBuild.ClaimPredicate{
  predicate: predicate(),
  time_type: time_type(),
  type: type(),
  value: value()
}
@type time_type() :: :relative | :absolute
@type type() :: :time | :and | :or | :not
@type validation() :: {:ok, any()} | {:error, any()}
@type value() :: t() | Stellar.TxBuild.ClaimPredicates.t() | pos_integer()