/** * IDE API * Handle user environment * * OpenAPI spec version: 1.0.0 * Contact: dev@corley.it * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /** * * @export * @interface Organization */ export interface Organization { /** * organization unique identifier * @type {string} * @memberof Organization */ id: any; /** * organization name * @type {string} * @memberof Organization */ name: any; /** * when PUBLIC it allows anonymous users to signup on this organization. if RESERVED only administrators can register new users. * @type {string} * @memberof Organization */ signup: OrganizationSignupEnum; /** * * @type {string} * @memberof Organization */ domain: any; /** * authentication method used by the organization. It could be internal or federated. When federated the name of federation is used for this property. * @type {string} * @memberof Organization */ authentication: any; /** * current organization status * @type {string} * @memberof Organization */ status: OrganizationStatusEnum; } /** * @export * @enum {string} */ export declare enum OrganizationSignupEnum { PUBLIC = "PUBLIC", RESERVED = "RESERVED" } /** * @export * @enum {string} */ export declare enum OrganizationStatusEnum { STABLE = "STABLE", UPDATING = "UPDATING", DELETING = "DELETING" }