@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
39 lines (38 loc) • 981 B
TypeScript
/**
* devopness API
* Devopness API - Painless essential DevOps to everyone
*
* The version of the OpenAPI document: latest
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { ActionDeploymentCommit } from './action-deployment-commit';
import { ActionDeploymentContent } from './action-deployment-content';
/**
*
* @export
* @interface ActionDeploymentData
*/
export interface ActionDeploymentData {
/**
* The name generated to release created by this deployment
* @type {string}
* @memberof ActionDeploymentData
*/
release_name: string;
/**
*
* @type {ActionDeploymentCommit}
* @memberof ActionDeploymentData
*/
commit: ActionDeploymentCommit;
/**
*
* @type {ActionDeploymentContent}
* @memberof ActionDeploymentData
*/
deployment: ActionDeploymentContent;
}