All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mangopay.entities.subentities.PendingUserAction Maven / Gradle / Ivy

There is a newer version: 2.42.0
Show newest version
package com.mangopay.entities.subentities;

import com.google.gson.annotations.SerializedName;
import com.mangopay.core.Dto;

public class PendingUserAction extends Dto {
    /**
     * The URL to which to redirect the user to perform strong customer authentication (SCA) via a Mangopay-hosted webpage. This value is a variable and should not be hardcoded.
     * 

* Caution: Before redirecting the user on this URL, you must add the query parameter ReturnUrl with the percent-encoded URL to which you want the SCA session to return the user after authentication (whether successful or not). *

* For more details, see How to redirect a user for an SCA session */ @SerializedName("RedirectUrl") private String redirectUrl; public String getRedirectUrl() { return redirectUrl; } public Boolean allFieldsNull() { return redirectUrl == null; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy