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

com.mercadopago.client.preference.PreferenceBackUrlsRequest Maven / Gradle / Ivy

There is a newer version: 2.1.29
Show newest version
package com.mercadopago.client.preference;

import lombok.Builder;
import lombok.Getter;

/** Back URLs. */
@Getter
@Builder
public class PreferenceBackUrlsRequest {
  /** URL to return when the payment succeed. */
  private final String success;

  /** URL to return when the payment is pending. */
  private final String pending;

  /** URL to return when the payment fail. */
  private final String failure;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy