InformationNeededEnum

public enum InformationNeededEnum : Sendable

Represents the type of customer information needed for a transfer operation.

This enum differentiates between non-interactive customer information requests and customer information status responses in SEP-6 transfer operations.

See also:

  • Non-interactive customer information is needed to complete the transfer.

    The anchor requires additional customer information fields to be submitted to the /customer endpoint before the deposit or withdrawal can proceed.

    Declaration

    Swift

    case nonInteractive(info: CustomerInformationNeededNonInteractive)
  • Customer information processing status response.

    Indicates the current status of customer information processing, such as pending or denied, along with optional details about the review process.

    Declaration

    Swift

    case status(info: CustomerInformationStatus)