Class OnboardingTheme
- java.lang.Object
-
- com.adyen.model.legalentitymanagement.OnboardingTheme
-
public class OnboardingTheme extends Object
OnboardingTheme
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CREATED_ATstatic StringJSON_PROPERTY_DESCRIPTIONstatic StringJSON_PROPERTY_IDstatic StringJSON_PROPERTY_PROPERTIESstatic StringJSON_PROPERTY_UPDATED_AT
-
Constructor Summary
Constructors Constructor Description OnboardingTheme()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description OnboardingThemecreatedAt(OffsetDateTime createdAt)The creation date of the theme.OnboardingThemedescription(String description)The description of the theme.booleanequals(Object o)Return true if this OnboardingTheme object is equal to o.static OnboardingThemefromJson(String jsonString)Create an instance of OnboardingTheme given an JSON stringOffsetDateTimegetCreatedAt()The creation date of the theme.StringgetDescription()The description of the theme.StringgetId()The unique identifier of the theme.Map<String,String>getProperties()The properties of the theme.OffsetDateTimegetUpdatedAt()The date when the theme was last updated.inthashCode()OnboardingThemeid(String id)The unique identifier of the theme.OnboardingThemeproperties(Map<String,String> properties)The properties of the theme.OnboardingThemeputPropertiesItem(String key, String propertiesItem)voidsetCreatedAt(OffsetDateTime createdAt)The creation date of the theme.voidsetDescription(String description)The description of the theme.voidsetId(String id)The unique identifier of the theme.voidsetProperties(Map<String,String> properties)The properties of the theme.voidsetUpdatedAt(OffsetDateTime updatedAt)The date when the theme was last updated.StringtoJson()Convert an instance of OnboardingTheme to an JSON stringStringtoString()OnboardingThemeupdatedAt(OffsetDateTime updatedAt)The date when the theme was last updated.
-
-
-
Field Detail
-
JSON_PROPERTY_CREATED_AT
public static final String JSON_PROPERTY_CREATED_AT
- See Also:
- Constant Field Values
-
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_PROPERTIES
public static final String JSON_PROPERTY_PROPERTIES
- See Also:
- Constant Field Values
-
JSON_PROPERTY_UPDATED_AT
public static final String JSON_PROPERTY_UPDATED_AT
- See Also:
- Constant Field Values
-
-
Method Detail
-
createdAt
public OnboardingTheme createdAt(OffsetDateTime createdAt)
The creation date of the theme.- Parameters:
createdAt-- Returns:
- the current
OnboardingThemeinstance, allowing for method chaining
-
getCreatedAt
public OffsetDateTime getCreatedAt()
The creation date of the theme.- Returns:
- createdAt
-
setCreatedAt
public void setCreatedAt(OffsetDateTime createdAt)
The creation date of the theme.- Parameters:
createdAt-
-
description
public OnboardingTheme description(String description)
The description of the theme.- Parameters:
description-- Returns:
- the current
OnboardingThemeinstance, allowing for method chaining
-
getDescription
public String getDescription()
The description of the theme.- Returns:
- description
-
setDescription
public void setDescription(String description)
The description of the theme.- Parameters:
description-
-
id
public OnboardingTheme id(String id)
The unique identifier of the theme.- Parameters:
id-- Returns:
- the current
OnboardingThemeinstance, allowing for method chaining
-
getId
public String getId()
The unique identifier of the theme.- Returns:
- id
-
setId
public void setId(String id)
The unique identifier of the theme.- Parameters:
id-
-
properties
public OnboardingTheme properties(Map<String,String> properties)
The properties of the theme.- Parameters:
properties-- Returns:
- the current
OnboardingThemeinstance, allowing for method chaining
-
putPropertiesItem
public OnboardingTheme putPropertiesItem(String key, String propertiesItem)
-
getProperties
public Map<String,String> getProperties()
The properties of the theme.- Returns:
- properties
-
setProperties
public void setProperties(Map<String,String> properties)
The properties of the theme.- Parameters:
properties-
-
updatedAt
public OnboardingTheme updatedAt(OffsetDateTime updatedAt)
The date when the theme was last updated.- Parameters:
updatedAt-- Returns:
- the current
OnboardingThemeinstance, allowing for method chaining
-
getUpdatedAt
public OffsetDateTime getUpdatedAt()
The date when the theme was last updated.- Returns:
- updatedAt
-
setUpdatedAt
public void setUpdatedAt(OffsetDateTime updatedAt)
The date when the theme was last updated.- Parameters:
updatedAt-
-
equals
public boolean equals(Object o)
Return true if this OnboardingTheme object is equal to o.
-
fromJson
public static OnboardingTheme fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of OnboardingTheme given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of OnboardingTheme
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to OnboardingTheme
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of OnboardingTheme to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-