Package com.adyen.model.checkout
Class SDKEphemPubKey
- java.lang.Object
-
- com.adyen.model.checkout.SDKEphemPubKey
-
public class SDKEphemPubKey extends Object
SDKEphemPubKey
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CRVstatic StringJSON_PROPERTY_KTYstatic StringJSON_PROPERTY_Xstatic StringJSON_PROPERTY_Y
-
Constructor Summary
Constructors Constructor Description SDKEphemPubKey()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SDKEphemPubKeycrv(String crv)booleanequals(Object o)Return true if this SDKEphemPubKey object is equal to o.static SDKEphemPubKeyfromJson(String jsonString)Create an instance of SDKEphemPubKey given an JSON stringStringgetCrv()The `crv` value as received from the 3D Secure 2 SDK.StringgetKty()The `kty` value as received from the 3D Secure 2 SDK.StringgetX()The `x` value as received from the 3D Secure 2 SDK.StringgetY()The `y` value as received from the 3D Secure 2 SDK.inthashCode()SDKEphemPubKeykty(String kty)voidsetCrv(String crv)The `crv` value as received from the 3D Secure 2 SDK.voidsetKty(String kty)The `kty` value as received from the 3D Secure 2 SDK.voidsetX(String x)The `x` value as received from the 3D Secure 2 SDK.voidsetY(String y)The `y` value as received from the 3D Secure 2 SDK.StringtoJson()Convert an instance of SDKEphemPubKey to an JSON stringStringtoString()SDKEphemPubKeyx(String x)SDKEphemPubKeyy(String y)
-
-
-
Field Detail
-
JSON_PROPERTY_CRV
public static final String JSON_PROPERTY_CRV
- See Also:
- Constant Field Values
-
JSON_PROPERTY_KTY
public static final String JSON_PROPERTY_KTY
- See Also:
- Constant Field Values
-
JSON_PROPERTY_X
public static final String JSON_PROPERTY_X
- See Also:
- Constant Field Values
-
JSON_PROPERTY_Y
public static final String JSON_PROPERTY_Y
- See Also:
- Constant Field Values
-
-
Method Detail
-
crv
public SDKEphemPubKey crv(String crv)
-
getCrv
public String getCrv()
The `crv` value as received from the 3D Secure 2 SDK.- Returns:
- crv
-
setCrv
public void setCrv(String crv)
The `crv` value as received from the 3D Secure 2 SDK.- Parameters:
crv-
-
kty
public SDKEphemPubKey kty(String kty)
-
getKty
public String getKty()
The `kty` value as received from the 3D Secure 2 SDK.- Returns:
- kty
-
setKty
public void setKty(String kty)
The `kty` value as received from the 3D Secure 2 SDK.- Parameters:
kty-
-
x
public SDKEphemPubKey x(String x)
-
getX
public String getX()
The `x` value as received from the 3D Secure 2 SDK.- Returns:
- x
-
setX
public void setX(String x)
The `x` value as received from the 3D Secure 2 SDK.- Parameters:
x-
-
y
public SDKEphemPubKey y(String y)
-
getY
public String getY()
The `y` value as received from the 3D Secure 2 SDK.- Returns:
- y
-
setY
public void setY(String y)
The `y` value as received from the 3D Secure 2 SDK.- Parameters:
y-
-
equals
public boolean equals(Object o)
Return true if this SDKEphemPubKey object is equal to o.
-
fromJson
public static SDKEphemPubKey fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of SDKEphemPubKey given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of SDKEphemPubKey
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to SDKEphemPubKey
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of SDKEphemPubKey to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-