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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // SensitivityLabel undocumented
     6  type SensitivityLabel struct {
     7  	// Entity is the base model of SensitivityLabel
     8  	Entity
     9  	// Name undocumented
    10  	Name *string `json:"name,omitempty"`
    11  	// DisplayName undocumented
    12  	DisplayName *string `json:"displayName,omitempty"`
    13  	// Description undocumented
    14  	Description *string `json:"description,omitempty"`
    15  	// ToolTip undocumented
    16  	ToolTip *string `json:"toolTip,omitempty"`
    17  	// IsEndpointProtectionEnabled undocumented
    18  	IsEndpointProtectionEnabled *bool `json:"isEndpointProtectionEnabled,omitempty"`
    19  	// IsDefault undocumented
    20  	IsDefault *bool `json:"isDefault,omitempty"`
    21  	// ApplicationMode undocumented
    22  	ApplicationMode *ApplicationMode `json:"applicationMode,omitempty"`
    23  	// LabelActions undocumented
    24  	LabelActions []LabelActionBase `json:"labelActions,omitempty"`
    25  	// AssignedPolicies undocumented
    26  	AssignedPolicies []LabelPolicy `json:"assignedPolicies,omitempty"`
    27  	// Priority undocumented
    28  	Priority *int `json:"priority,omitempty"`
    29  	// AutoLabeling undocumented
    30  	AutoLabeling *AutoLabeling `json:"autoLabeling,omitempty"`
    31  	// Sublabels undocumented
    32  	Sublabels []SensitivityLabel `json:"sublabels,omitempty"`
    33  }
    34  
    35  // SensitivityPolicySettings undocumented
    36  type SensitivityPolicySettings struct {
    37  	// Entity is the base model of SensitivityPolicySettings
    38  	Entity
    39  	// IsMandatory undocumented
    40  	IsMandatory *bool `json:"isMandatory,omitempty"`
    41  	// HelpWebURL undocumented
    42  	HelpWebURL *string `json:"helpWebUrl,omitempty"`
    43  	// DowngradeSensitivityRequiresJustification undocumented
    44  	DowngradeSensitivityRequiresJustification *bool `json:"downgradeSensitivityRequiresJustification,omitempty"`
    45  }