Class OnboardingThemes
- java.lang.Object
-
- com.adyen.model.legalentitymanagement.OnboardingThemes
-
public class OnboardingThemes extends Object
OnboardingThemes
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_NEXTstatic StringJSON_PROPERTY_PREVIOUSstatic StringJSON_PROPERTY_THEMES
-
Constructor Summary
Constructors Constructor Description OnboardingThemes()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description OnboardingThemesaddThemesItem(OnboardingTheme themesItem)booleanequals(Object o)Return true if this OnboardingThemes object is equal to o.static OnboardingThemesfromJson(String jsonString)Create an instance of OnboardingThemes given an JSON stringStringgetNext()The next page.StringgetPrevious()The previous page.List<OnboardingTheme>getThemes()List of onboarding themes.inthashCode()OnboardingThemesnext(String next)OnboardingThemesprevious(String previous)voidsetNext(String next)The next page.voidsetPrevious(String previous)The previous page.voidsetThemes(List<OnboardingTheme> themes)List of onboarding themes.OnboardingThemesthemes(List<OnboardingTheme> themes)StringtoJson()Convert an instance of OnboardingThemes to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_NEXT
public static final String JSON_PROPERTY_NEXT
- See Also:
- Constant Field Values
-
JSON_PROPERTY_PREVIOUS
public static final String JSON_PROPERTY_PREVIOUS
- See Also:
- Constant Field Values
-
JSON_PROPERTY_THEMES
public static final String JSON_PROPERTY_THEMES
- See Also:
- Constant Field Values
-
-
Method Detail
-
next
public OnboardingThemes next(String next)
-
getNext
public String getNext()
The next page. Only present if there is a next page.- Returns:
- next
-
setNext
public void setNext(String next)
The next page. Only present if there is a next page.- Parameters:
next-
-
previous
public OnboardingThemes previous(String previous)
-
getPrevious
public String getPrevious()
The previous page. Only present if there is a previous page.- Returns:
- previous
-
setPrevious
public void setPrevious(String previous)
The previous page. Only present if there is a previous page.- Parameters:
previous-
-
themes
public OnboardingThemes themes(List<OnboardingTheme> themes)
-
addThemesItem
public OnboardingThemes addThemesItem(OnboardingTheme themesItem)
-
getThemes
public List<OnboardingTheme> getThemes()
List of onboarding themes.- Returns:
- themes
-
setThemes
public void setThemes(List<OnboardingTheme> themes)
List of onboarding themes.- Parameters:
themes-
-
equals
public boolean equals(Object o)
Return true if this OnboardingThemes object is equal to o.
-
fromJson
public static OnboardingThemes fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of OnboardingThemes given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of OnboardingThemes
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to OnboardingThemes
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of OnboardingThemes to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-