Interface RequestParams

All Known Implementing Classes:
ImmutableRequestParams

@Immutable public interface RequestParams
This holds the request parameters that are common to the API requests.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    This is an option set by the client in an API call to get the map data during a read operation or to specify the format of the map data during a write operation.
  • Method Details

    • compactMapData

      boolean compactMapData()
      This is an option set by the client in an API call to get the map data during a read operation or to specify the format of the map data during a write operation. if true
           "map": {
              "key1": "value1",
              "key2": "value2"
            }
       
      else
            "map": [
            {
              "key": "key1",
              "value": "value1"
            },
            {
              "key": "key2",
              "value": "value2"
            }
            ]
       
      Returns:
      boolean