> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# ProviderPreferencesOrder

## Supported Types

### ProviderName

```go theme={null}
providerPreferencesOrder := components.CreateProviderPreferencesOrderProviderName(components.ProviderName{/* values here */})
```

###

```go theme={null}
providerPreferencesOrder := components.CreateProviderPreferencesOrderStr(string{/* values here */})
```

## Union Discrimination

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

```go theme={null}
switch providerPreferencesOrder.Type {
	case components.ProviderPreferencesOrderTypeProviderName:
		// providerPreferencesOrder.ProviderName is populated
	case components.ProviderPreferencesOrderTypeStr:
		// providerPreferencesOrder.Str is populated
}
```
