# CliReleaseDestination

Release destination metadata from the Interfere CLI.

## Example Usage

```typescript
import { CliReleaseDestination } from "@interfere/sdk/models";

let value: CliReleaseDestination = {
  provider: "cli",
  destinationReleaseId: "<id>",
  environment: "<value>",
  deploymentUrl: null,
};
```

## Fields

| Field                  | Type                   | Required               | Description            |
| ---------------------- | ---------------------- | ---------------------- | ---------------------- |
| `provider`             | *"cli"*                | :heavy_check_mark:     | N/A                    |
| `destinationReleaseId` | *string*               | :heavy_check_mark:     | N/A                    |
| `environment`          | *string*               | :heavy_check_mark:     | N/A                    |
| `deploymentUrl`        | *string*               | :heavy_check_mark:     | N/A                    |