Module Values_1.OffsetConfigurationSource

Offset-based pagination configuration that defines how to handle pagination using numeric offsets and limits.

Sourcetype nonrec t = {
  1. offsetParameter : ExtractedParameter.t;
    (*

    The parameter name used to specify the starting position or offset for retrieving results.

    *)
  2. limitParameter : ExtractedParameter.t;
    (*

    The parameter name used to specify the maximum number of results to return per page.

    *)
}
Sourceval context_ : string
Sourceval make : offsetParameter:ExtractedParameter.t -> limitParameter:ExtractedParameter.t -> unit -> t
Sourceval to_value : t -> [> `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 ]
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