1// Copyright (c) 2016, 2018, 2020, Oracle and/or its affiliates.  All rights reserved.
2// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
3// Code generated. DO NOT EDIT.
4
5// LogAnalytics API
6//
7// The LogAnalytics API for the LogAnalytics service.
8//
9
10package loganalytics
11
12import (
13	"github.com/oracle/oci-go-sdk/common"
14)
15
16// MatchInfo MatchInfo
17type MatchInfo struct {
18
19	// matchingLogEntryEndIndex
20	MatchingLogEntryEndIndex *int `mandatory:"false" json:"matchingLogEntryEndIndex"`
21
22	// regexScore
23	RegexScore *int `mandatory:"false" json:"regexScore"`
24
25	// stepCount
26	StepCount *int `mandatory:"false" json:"stepCount"`
27}
28
29func (m MatchInfo) String() string {
30	return common.PointerString(m)
31}
32