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

com.stripe.param.common.EmptyParam Maven / Gradle / Ivy

There is a newer version: 26.8.0-beta.1
Show newest version
package com.stripe.param.common;

import com.google.gson.annotations.SerializedName;
import com.stripe.net.ApiRequestParams;

public enum EmptyParam implements ApiRequestParams.EnumParam {
  @SerializedName("")
  EMPTY("");
  private final String value;

  EmptyParam(String value) {
    this.value = value;
  }

  @Override
  public String getValue() {
    return this.value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy