Interface I18nlocaleApi

    • Method Detail

      • searchI18nlocales

        List<I18nlocale> searchI18nlocales​(Integer p,
                                           Integer c)
        Finds I18nlocales List the available I18nlocales with pagination params and filters
        Parameters:
        p - index of the page to display (required)
        c - maximum number of elements to retrieve (required)
        Returns:
        List<I18nlocale>
      • searchI18nlocalesWithHttpInfo

        ApiResponse<List<I18nlocale>> searchI18nlocalesWithHttpInfo​(Integer p,
                                                                    Integer c)
        Finds I18nlocales Similar to searchI18nlocales but it also returns the http response headers . List the available I18nlocales with pagination params and filters
        Parameters:
        p - index of the page to display (required)
        c - maximum number of elements to retrieve (required)
        Returns:
        A ApiResponse that wraps the response boyd and the http headers.
      • searchI18nlocales

        List<I18nlocale> searchI18nlocales​(Map<String,​Object> queryParams)
        Finds I18nlocales List the available I18nlocales with pagination params and filters Note, this is equivalent to the other searchI18nlocales method, but with the query parameters collected into a single Map parameter. This is convenient for services with optional query parameters, especially when used with the I18nlocaleApi.SearchI18nlocalesQueryParams class that allows for building up this map in a fluent style.
        Parameters:
        queryParams - Map of query parameters as name-value pairs

        The following elements may be specified in the query map:

        • p - index of the page to display (required)
        • c - maximum number of elements to retrieve (required)
        Returns:
        List<I18nlocale>
      • searchI18nlocalesWithHttpInfo

        ApiResponse<List<I18nlocale>> searchI18nlocalesWithHttpInfo​(Map<String,​Object> queryParams)
        Finds I18nlocales List the available I18nlocales with pagination params and filters Note, this is equivalent to the other searchI18nlocales that receives the query parameters as a map, but this one also exposes the Http response headers
        Parameters:
        queryParams - Map of query parameters as name-value pairs

        The following elements may be specified in the query map:

        • p - index of the page to display (required)
        • c - maximum number of elements to retrieve (required)
        Returns:
        List<I18nlocale>