> ISPO SDK documentation. [HTML](https://ispo.ai/docs/interfaces/core.CloudSupportIssueCreateArgs.html) · [Documentation index](https://ispo.ai/docs/llms.txt)

# Interface CloudSupportIssueCreateArgs

```typescript
interface CloudSupportIssueCreateArgs {
    actual: string;
    category?: "bug" | "ui" | "crash" | "performance" | "other";
    evidenceRefs?: string[];
    expected: string;
    repro: string;
    severity?: "high" | "medium" | "low";
    surface: "project" | "host" | "community";
    title: string;
}
```

Types: [actual](#actual), [category](#category), [evidenceRefs](#evidencerefs), [expected](#expected), [repro](#repro), [severity](#severity), [surface](#surface), [title](#title)

##### Index

### <a id="properties"></a>Properties

[actual](#actual) [category?](#category) [evidenceRefs?](#evidencerefs) [expected](#expected) [repro](#repro) [severity?](#severity) [surface](#surface) [title](#title)

## <a id="properties-1"></a>Properties

### <a id="actual"></a>actual

```typescript
actual: string
```

### <a id="category"></a>`Optional`category

```typescript
category?: "bug" | "ui" | "crash" | "performance" | "other"
```

### <a id="evidencerefs"></a>`Optional`evidenceRefs

```typescript
evidenceRefs?: string[]
```

Opaque evidence refs from `collectEvidence`, claimed by this issue. Must belong to the caller and be unattached, or the create is `invalid`. At most 8 ([CLOUD\_SUPPORT\_MAX\_EVIDENCE\_REFS](../variables/core.Supporting_types.CLOUD_SUPPORT_MAX_EVIDENCE_REFS.md)) — a longer list is `invalid` too, so an app should not offer a ninth capture.

### <a id="expected"></a>expected

```typescript
expected: string
```

### <a id="repro"></a>repro

```typescript
repro: string
```

### <a id="severity"></a>`Optional`severity

```typescript
severity?: "high" | "medium" | "low"
```

### <a id="surface"></a>surface

```typescript
surface: "project" | "host" | "community"
```

### <a id="title"></a>title

```typescript
title: string
```
