github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelSensitive.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // SensitiveContentEvidence undocumented
     6  type SensitiveContentEvidence struct {
     7  	// Object is the base model of SensitiveContentEvidence
     8  	Object
     9  	// Match undocumented
    10  	Match *string `json:"match,omitempty"`
    11  	// Offset undocumented
    12  	Offset *int `json:"offset,omitempty"`
    13  	// Length undocumented
    14  	Length *int `json:"length,omitempty"`
    15  }
    16  
    17  // SensitiveContentLocation undocumented
    18  type SensitiveContentLocation struct {
    19  	// Object is the base model of SensitiveContentLocation
    20  	Object
    21  	// IDMatch undocumented
    22  	IDMatch *string `json:"idMatch,omitempty"`
    23  	// Offset undocumented
    24  	Offset *int `json:"offset,omitempty"`
    25  	// Length undocumented
    26  	Length *int `json:"length,omitempty"`
    27  	// Evidences undocumented
    28  	Evidences []SensitiveContentEvidence `json:"evidences,omitempty"`
    29  }
    30  
    31  // SensitiveType undocumented
    32  type SensitiveType struct {
    33  	// Entity is the base model of SensitiveType
    34  	Entity
    35  	// Name undocumented
    36  	Name *string `json:"name,omitempty"`
    37  	// Description undocumented
    38  	Description *string `json:"description,omitempty"`
    39  	// RulePackageID undocumented
    40  	RulePackageID *string `json:"rulePackageId,omitempty"`
    41  	// RulePackageType undocumented
    42  	RulePackageType *string `json:"rulePackageType,omitempty"`
    43  	// PublisherName undocumented
    44  	PublisherName *string `json:"publisherName,omitempty"`
    45  	// State undocumented
    46  	State *string `json:"state,omitempty"`
    47  }