Journey.Value (Journey v0.0.5) View Source

The structure containing the value assigned to a step.

Link to this section Summary

Types

t()

Contains the value assigned to a process step.

Link to this section Types

Specs

t() :: %Journey.Value{
  name: String.t(),
  status: :not_computed | :computing | :computed | :failed,
  update_time: integer(),
  value: any()
}

Contains the value assigned to a process step.

name

The name of the step associated with this value.

Example: :first_name.

value

The actual value.

Example: "Mario".

update_time

The time (in Unix Epoch seconds) when the last update took place.

Example: 1615793585.

status

The status of this value.

Example: :not_computed.