GetDeploymentsPlatform
June 9, 2026 ยท View on GitHub
Metadata about the source platform that triggered the deployment.
Example Usage
import { GetDeploymentsPlatform } from "@vercel/sdk/models/getdeploymentsop.js";
let value: GetDeploymentsPlatform = {
source: {
name: "<value>",
},
origin: {
type: "id",
value: "<value>",
},
creator: {
name: "<value>",
},
};
Fields
| Field | Type | Required | Description |
|---|---|---|---|
source | models.GetDeploymentsDeploymentsSource | :heavy_check_mark: | The external platform that created the deployment (e.g. its display name). |
origin | models.GetDeploymentsOrigin | :heavy_check_mark: | Reference back to the entity on the platform that initiated the deployment. |
creator | models.GetDeploymentsDeploymentsCreator | :heavy_check_mark: | The user on the external platform who triggered the deployment. |
meta | Record<string, string> | :heavy_minus_sign: | Arbitrary key-value metadata provided by the platform. |