RedirectUrl

@JsonClass(generateAdapter = true)
data class RedirectUrl(returnUrl: String?, url: String?) : Parcelable

instructions for authenticating by redirecting your customer to another page or application.

Constructors

Link copied to clipboard
fun RedirectUrl(returnUrl: String?, url: String?)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val returnUrl: String?

If the customer does not exit their browser while authenticating, they will be redirected to this specified URL after completion.

Link copied to clipboard
val url: String?

The URL you must redirect your customer to in order to authenticate.