> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter-d02e98a0-mintlify-7021d5f4.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# InputsContent1 - Go SDK

> InputsContent1 type definition

<Warning>
  The Go SDK and docs are currently in beta.
  Report issues on [GitHub](https://github.com/OpenRouterTeam/go-sdk/issues).
</Warning>

## Supported Types

### ResponseOutputText

```go lines theme={null}
inputsContent1 := components.CreateInputsContent1OutputText(components.ResponseOutputText{/* values here */})
```

### OpenAIResponsesRefusalContent

```go lines theme={null}
inputsContent1 := components.CreateInputsContent1Refusal(components.OpenAIResponsesRefusalContent{/* values here */})
```

## Union Discrimination

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

```go lines theme={null}
switch inputsContent1.Type {
	case components.InputsContent1TypeOutputText:
		// inputsContent1.ResponseOutputText is populated
	case components.InputsContent1TypeRefusal:
		// inputsContent1.OpenAIResponsesRefusalContent is populated
}
```
