Module Values_1.PaginationConfigurationSource

Configuration that defines how to handle paginated responses from REST APIs, supporting different pagination strategies used by various services.

Sourcetype nonrec t = {
  1. cursorConfiguration : CursorConfiguration.t option;
    (*

    Configuration for cursor-based pagination, where the API provides a cursor or token to retrieve the next page of results.

    *)
  2. offsetConfiguration : OffsetConfiguration.t option;
    (*

    Configuration for offset-based pagination, where the API uses numeric offsets and limits to control which results are returned.

    *)
}
Sourceval make : ?cursorConfiguration:??? -> ?offsetConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of Values_0.ConnectorPropertyKey.t | `Structure of (string * [> `String of JsonPathString.t ]) list ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t