// Copyright © WireMock.Net using System; using WireMock.Models; namespace WireMock.Matchers; /// /// IProtoBufMatcher /// public interface IProtoBufMatcher : IDecodeBytesMatcher, IBytesMatcher { /// /// The Func to define the proto definition as id or texts. /// Func ProtoDefinition { get; set; } /// /// The full type of the protobuf (request/response) message object. Format is "{package-name}.{type-name}". /// string MessageType { get; } /// /// The Matcher to use (optional). /// IObjectMatcher? Matcher { get; } }