@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
63 lines (62 loc) • 1.46 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 { ResourceSummaryItem } from './resource-summary-item';
import { UserRelation } from './user-relation';
/**
*
* @export
* @interface Organization
*/
export interface Organization {
/**
* The unique identifier for the organization
* @type {number}
* @memberof Organization
*/
id: number;
/**
* The name of the organization
* @type {string}
* @memberof Organization
*/
name: string;
/**
* The URL Slug of the organization
* @type {string}
* @memberof Organization
*/
url_slug: string;
/**
* Summary of the resource
* @type {Array<ResourceSummaryItem>}
* @memberof Organization
*/
resource_summary?: Array<ResourceSummaryItem>;
/**
*
* @type {UserRelation}
* @memberof Organization
*/
owner: UserRelation;
/**
* The date and time when the organization was created
* @type {string}
* @memberof Organization
*/
created_at: string;
/**
* The date and time when the organization was last updated
* @type {string}
* @memberof Organization
*/
updated_at: string;
}