UNPKG

@devopness/sdk-js

Version:

Devopness API JS/TS SDK - Painless essential DevOps to everyone

67 lines (66 loc) 1.49 kB
/** * 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 ResourceEventRelation */ export interface ResourceEventRelation { /** * The ID of the given resource event * @type {number} * @memberof ResourceEventRelation */ id: number; /** * The type of resource event * @type {string} * @memberof ResourceEventRelation */ event_type: string; /** * The event\'s resource type * @type {string} * @memberof ResourceEventRelation */ resource_type: string; /** * The event\'s resource ID * @type {number} * @memberof ResourceEventRelation */ resource_id: number; /** * * @type {string} * @memberof ResourceEventRelation */ message: string | null; /** * * @type {number} * @memberof ResourceEventRelation */ triggered_by: number | null; /** * The date and time when the record was created * @type {string} * @memberof ResourceEventRelation */ created_at: string; /** * The date and time when the record was last updated * @type {string} * @memberof ResourceEventRelation */ updated_at: string; }