Package com.adyen.model.management
Class TerminalConnectivityCellular
- java.lang.Object
-
- com.adyen.model.management.TerminalConnectivityCellular
-
public class TerminalConnectivityCellular extends Object
TerminalConnectivityCellular
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTerminalConnectivityCellular.StatusEnumOn a terminal that supports 3G or 4G connectivity, indicates the status of the SIM card in the terminal.
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_ICCIDstatic StringJSON_PROPERTY_STATUS
-
Constructor Summary
Constructors Constructor Description TerminalConnectivityCellular()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Return true if this TerminalConnectivityCellular object is equal to o.static TerminalConnectivityCellularfromJson(String jsonString)Create an instance of TerminalConnectivityCellular given an JSON stringStringgetIccid()The integrated circuit card identifier (ICCID) of the SIM card in the terminal.TerminalConnectivityCellular.StatusEnumgetStatus()On a terminal that supports 3G or 4G connectivity, indicates the status of the SIM card in the terminal.inthashCode()TerminalConnectivityCellulariccid(String iccid)voidsetIccid(String iccid)The integrated circuit card identifier (ICCID) of the SIM card in the terminal.voidsetStatus(TerminalConnectivityCellular.StatusEnum status)On a terminal that supports 3G or 4G connectivity, indicates the status of the SIM card in the terminal.TerminalConnectivityCellularstatus(TerminalConnectivityCellular.StatusEnum status)StringtoJson()Convert an instance of TerminalConnectivityCellular to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_ICCID
public static final String JSON_PROPERTY_ICCID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_STATUS
public static final String JSON_PROPERTY_STATUS
- See Also:
- Constant Field Values
-
-
Method Detail
-
iccid
public TerminalConnectivityCellular iccid(String iccid)
-
getIccid
public String getIccid()
The integrated circuit card identifier (ICCID) of the SIM card in the terminal.- Returns:
- iccid
-
setIccid
public void setIccid(String iccid)
The integrated circuit card identifier (ICCID) of the SIM card in the terminal.- Parameters:
iccid-
-
status
public TerminalConnectivityCellular status(TerminalConnectivityCellular.StatusEnum status)
-
getStatus
public TerminalConnectivityCellular.StatusEnum getStatus()
On a terminal that supports 3G or 4G connectivity, indicates the status of the SIM card in the terminal.- Returns:
- status
-
setStatus
public void setStatus(TerminalConnectivityCellular.StatusEnum status)
On a terminal that supports 3G or 4G connectivity, indicates the status of the SIM card in the terminal.- Parameters:
status-
-
equals
public boolean equals(Object o)
Return true if this TerminalConnectivityCellular object is equal to o.
-
fromJson
public static TerminalConnectivityCellular fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of TerminalConnectivityCellular given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of TerminalConnectivityCellular
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to TerminalConnectivityCellular
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of TerminalConnectivityCellular to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-