@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
31 lines (30 loc) • 743 B
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 OrganizationCreate
*/
export interface OrganizationCreate {
/**
* The Name of the organization. Must not be greater than 255 characters.
* @type {string}
* @memberof OrganizationCreate
*/
name: string;
/**
* The URL Slug of the organization. Must not be greater than 255 characters.
* @type {string}
* @memberof OrganizationCreate
*/
url_slug: string;
}