@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
50 lines (49 loc) • 1.26 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.
*/
import { ResourceSummaryItemSummary } from './resource-summary-item-summary';
/**
*
* @export
* @interface ResourceSummaryItem
*/
export interface ResourceSummaryItem {
/**
* The type of the resource
* @type {string}
* @memberof ResourceSummaryItem
*/
resource_type: string;
/**
* The plural name of the resource type
* @type {string}
* @memberof ResourceSummaryItem
*/
resource_type_plural: string;
/**
* The human readable name of the resource type
* @type {string}
* @memberof ResourceSummaryItem
*/
resource_type_human_readable: string;
/**
* The human readable plural name of the resource type
* @type {string}
* @memberof ResourceSummaryItem
*/
resource_type_human_readable_plural: string;
/**
*
* @type {ResourceSummaryItemSummary}
* @memberof ResourceSummaryItem
*/
summary: ResourceSummaryItemSummary;
}