UNPKG

@devopness/sdk-js

Version:

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

43 lines (42 loc) 1.01 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 ProjectCreate */ export interface ProjectCreate { /** * The name of the project. Must not be greater than 60 characters. * @type {string} * @memberof ProjectCreate */ name: string; /** * The ID of the organization that owns the project. * @type {number} * @memberof ProjectCreate */ organization_id?: number; /** * A base64 string representation of the logo image. * @type {string} * @memberof ProjectCreate */ logo_image?: string; /** * A URL path to the project\'s logo image. Must be a valid URL. * @type {string} * @memberof ProjectCreate */ logo_url?: string; }