# SecretType

## Example Usage

```typescript
import { SecretType } from "@flexprice/sdk/sdk/models";

let value: SecretType = "private_key";

// Open enum: unrecognized values are captured as Unrecognized<string>
```

## Values

```typescript
"private_key" | "publishable_key" | "integration" | Unrecognized<string>
```