@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
49 lines (48 loc) • 1.12 kB
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.
*/
/**
* Variables used in pipeline
* @export
* @interface PipelineSettingsVariable
*/
export interface PipelineSettingsVariable {
/**
*
* @type {string}
* @memberof PipelineSettingsVariable
*/
name?: string;
/**
*
* @type {string}
* @memberof PipelineSettingsVariable
*/
human_readable?: string;
/**
* Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
* @type {string}
* @memberof PipelineSettingsVariable
*/
hint?: string;
/**
*
* @type {string}
* @memberof PipelineSettingsVariable
*/
type?: string;
/**
*
* @type {boolean}
* @memberof PipelineSettingsVariable
*/
required?: boolean;
}