@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
43 lines (42 loc) • 1.04 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.
*/
/**
*
* @export
* @interface ActionTargetLogStep
*/
export interface ActionTargetLogStep {
/**
* The execution order of the given step
* @type {number}
* @memberof ActionTargetLogStep
*/
order: number;
/**
* The date and time when the step started execution (i.e., left the `pending/queued` status)
* @type {string}
* @memberof ActionTargetLogStep
*/
started_at: string | null;
/**
* The date and time when the step has finished execution
* @type {string}
* @memberof ActionTargetLogStep
*/
completed_at: string | null;
/**
* The full text output log
* @type {string}
* @memberof ActionTargetLogStep
*/
output: string | null;
}