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

org.whispersystems.signalservice.api.subscriptions.PayPalConfirmPaymentIntentResponse Maven / Gradle / Ivy

There is a newer version: 2.15.3_unofficial_107
Show newest version
package org.whispersystems.signalservice.api.subscriptions;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Response object from creating a payment intent via PayPal
 */
public class PayPalConfirmPaymentIntentResponse {

  private final String paymentId;

  @JsonCreator
  public PayPalConfirmPaymentIntentResponse(@JsonProperty("paymentId") String paymentId) {
    this.paymentId   = paymentId;
  }

  public String getPaymentId() {
    return paymentId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy