Module Values.GrpcRouteMetadataSource

An object that represents the match metadata for the route.

Sourcetype nonrec t = {
  1. invert : Boolean.t option;
    (*

    Specify True to match anything except the match criteria. The default value is False.

    *)
  2. match_ : GrpcRouteMetadataMatchMethod.t option;
    (*

    An object that represents the data to match from the request.

    *)
  3. name : HeaderName.t;
    (*

    The name of the route.

    *)
}
Sourceval context_ : string
Sourceval make : ?invert:??? -> ?match_:??? -> name:HeaderName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of HeaderName.t | `Structure of (string * [> `String of HeaderMatch.t | `Structure of (string * [> `Long of Long.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