# V3ExtensionsMSTeamsEventClass

Represents the specific type of an incident-related event.

## Supported Types

###

```go
v3ExtensionsMSTeamsEventClass := components.CreateV3ExtensionsMSTeamsEventClassStr(string{/* values here */})
```

### V3ExtensionsMSTeamsEventClassEnum

```go
v3ExtensionsMSTeamsEventClass := components.CreateV3ExtensionsMSTeamsEventClassV3ExtensionsMSTeamsEventClassEnum(components.V3ExtensionsMSTeamsEventClassEnum{/* values here */})
```

## Union Discrimination

Use the `Type` field to determine which variant is active, then access the corresponding field:

```go
switch v3ExtensionsMSTeamsEventClass.Type {
	case components.V3ExtensionsMSTeamsEventClassTypeStr:
		// v3ExtensionsMSTeamsEventClass.Str is populated
	case components.V3ExtensionsMSTeamsEventClassTypeV3ExtensionsMSTeamsEventClassEnum:
		// v3ExtensionsMSTeamsEventClass.V3ExtensionsMSTeamsEventClassEnum is populated
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.incidents.cloud.solarwinds.com/go-sdk/docs/models/components/v3extensionsmsteamseventclass.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
