Skip to main content

PayComplete™™ Help Center

steps

Steps are what is displayed on the screen. Steps can contain instructions, images, and/or videos guiding the user through the process. Steps also defines when and what [actions](#Actions) to perform.

Key

Description

Format

Cardinality

id

Unique identifier of the step.

text

1

title

Optional title of the step.

text

0..1

description

Optional description of the step.

text

0..1

message

Optional message to display.

text

0..1

image

Optional image to display.

image

0..1

video

Optional video to display.

text

0..1

action

Optional action to perform when the step is entered.

lock, unlock, reset

0..1

transition

List of transitions to next resolve step(s). If empty the subsequent step from the definition is used, or the resolver finishes.

exit

1..n

auto

Indicates if the step is to continue to the next step without any user interaction.

boolean (false)

0..1

Example 38. Example
<step id="1">
    <message>A message to display</message>
</step>

<step id="2">
    <description>A description</description>
    <exit next="2b" />
</step>