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

org.whispersystems.signalservice.api.subscriptions.StripeClientSecret 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;

public final class StripeClientSecret {

  private final String id;
  private final String clientSecret;

  @JsonCreator
  public StripeClientSecret(@JsonProperty("clientSecret") String clientSecret) {
    this.id           = clientSecret.replaceFirst("_secret.*", "");
    this.clientSecret = clientSecret;
  }

  public String getId() {
    return id;
  }

  public String getClientSecret() {
    return clientSecret;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy