Package com.adyen.model.balanceplatform
Class BalancePlatform
- java.lang.Object
-
- com.adyen.model.balanceplatform.BalancePlatform
-
public class BalancePlatform extends Object
BalancePlatform
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_DESCRIPTIONstatic StringJSON_PROPERTY_IDstatic StringJSON_PROPERTY_STATUS
-
Constructor Summary
Constructors Constructor Description BalancePlatform()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BalancePlatformdescription(String description)booleanequals(Object o)Return true if this BalancePlatform object is equal to o.static BalancePlatformfromJson(String jsonString)Create an instance of BalancePlatform given an JSON stringStringgetDescription()Your description of the balance platform.StringgetId()The unique identifier of the balance platform.StringgetStatus()The status of the balance platform.inthashCode()BalancePlatformid(String id)voidsetDescription(String description)Your description of the balance platform.voidsetId(String id)The unique identifier of the balance platform.voidsetStatus(String status)The status of the balance platform.BalancePlatformstatus(String status)StringtoJson()Convert an instance of BalancePlatform to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_DESCRIPTION
public static final String JSON_PROPERTY_DESCRIPTION
- See Also:
- Constant Field Values
-
JSON_PROPERTY_ID
public static final String JSON_PROPERTY_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_STATUS
public static final String JSON_PROPERTY_STATUS
- See Also:
- Constant Field Values
-
-
Method Detail
-
description
public BalancePlatform description(String description)
-
getDescription
public String getDescription()
Your description of the balance platform.- Returns:
- description
-
setDescription
public void setDescription(String description)
Your description of the balance platform.- Parameters:
description-
-
id
public BalancePlatform id(String id)
-
getId
public String getId()
The unique identifier of the balance platform.- Returns:
- id
-
setId
public void setId(String id)
The unique identifier of the balance platform.- Parameters:
id-
-
status
public BalancePlatform status(String status)
-
getStatus
public String getStatus()
The status of the balance platform. Possible values: **Active**, **Inactive**, **Closed**, **Suspended**.- Returns:
- status
-
setStatus
public void setStatus(String status)
The status of the balance platform. Possible values: **Active**, **Inactive**, **Closed**, **Suspended**.- Parameters:
status-
-
equals
public boolean equals(Object o)
Return true if this BalancePlatform object is equal to o.
-
fromJson
public static BalancePlatform fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of BalancePlatform given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of BalancePlatform
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to BalancePlatform
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of BalancePlatform to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-