/** * 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 CreateOrganization */ export interface CreateOrganization { /** * organization unique identifier * @type {string} * @memberof CreateOrganization */ name: any; /** * when PUBLIC it allows anonymous users to signup on this organization. if RESERVED only administrators can register new users. * @type {string} * @memberof CreateOrganization */ signup: CreateOrganizationSignupEnum; /** * * @type {Array<CreateOrganizationAttributes>} * @memberof CreateOrganization */ attributes?: any; } /** * @export * @enum {string} */ export declare enum CreateOrganizationSignupEnum { PUBLIC = "PUBLIC", RESERVED = "RESERVED" }