UNPKG

@devopness/sdk-js

Version:

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

37 lines (36 loc) 881 B
/** * 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 OrganizationUpdate */ export interface OrganizationUpdate { /** * The unique ID of the given Organization. * @type {string} * @memberof OrganizationUpdate */ id: string; /** * The Name of the organization. Must not be greater than 255 characters. * @type {string} * @memberof OrganizationUpdate */ name: string; /** * The URL Slug of the organization. Must not be greater than 255 characters. * @type {string} * @memberof OrganizationUpdate */ url_slug: string; }