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

com.univapay.sdk.models.common.CallMethod Maven / Gradle / Ivy

There is a newer version: 0.2.35
Show newest version
package com.univapay.sdk.models.common;

import com.google.gson.annotations.SerializedName;

/** Representation of the method that is used to consume the issuerToken */
public enum CallMethod {

  /** The issuer token is a HTTP endpoint, invoked with GET */
  @SerializedName("http_get")
  HTTP_GET,
  /** The issuer token is a HTTP endpoint, invoked with POST */
  @SerializedName("http_post")
  HTTP_POST,
  /** The issuer token should be forwarded to the service's provided SDK */
  @SerializedName("sdk")
  SDK,
  @SerializedName("web")
  WEB,
  @SerializedName("app")
  APP,
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy