Module Values.GrpcMetadataMatchMethodSource

An object representing the method header to be matched.

Sourcetype nonrec t = {
  1. exact : HeaderMatch.t option;
    (*

    The exact method header to be matched on.

    *)
  2. prefix : HeaderMatch.t option;
    (*

    The specified beginning characters of the method header to be matched on.

    *)
  3. range : MatchRange.t option;
  4. regex : HeaderMatch.t option;
    (*

    The regex used to match the method header.

    *)
  5. suffix : HeaderMatch.t option;
    (*

    The specified ending characters of the method header to match on.

    *)
}
Sourceval make : ?exact:??? -> ?prefix:??? -> ?range:??? -> ?regex:??? -> ?suffix:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HeaderMatch.t | `Structure of (string * [> `Long of Long.t ]) 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