PaymentResult

public struct PaymentResult : Codable, Equatable, FunctionResult

Contains the result of a payment request

  • True, if the payment request was successful; otherwise the verification_url will be not empty

    Declaration

    Swift

    public let success: Bool
  • URL for additional payment credentials verification

    Declaration

    Swift

    public let verificationUrl: String
  • Contains the result of a payment request

    Declaration

    Swift

    public init(success: Bool, verificationUrl: String)

    Parameters

    success

    True, if the payment request was successful; otherwise the verification_url will be not empty

    verificationUrl

    URL for additional payment credentials verification