Class OnboardingThemes


  • public class OnboardingThemes
    extends Object
    OnboardingThemes
    • Constructor Detail

      • OnboardingThemes

        public OnboardingThemes()
    • Method Detail

      • next

        public OnboardingThemes next​(String next)
        The next page. Only present if there is a next page.
        Parameters:
        next -
        Returns:
        the current OnboardingThemes instance, allowing for method chaining
      • 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)
        The previous page. Only present if there is a previous page.
        Parameters:
        previous -
        Returns:
        the current OnboardingThemes instance, allowing for method chaining
      • 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)
        List of onboarding themes.
        Parameters:
        themes -
        Returns:
        the current OnboardingThemes instance, allowing for method chaining
      • 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.
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • 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