/** * 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 CreateOrganizationAttributes */ export interface CreateOrganizationAttributes { /** * user attribute name, for example: the user role: ADMIN, USER or GUEST * @type {string} * @memberof CreateOrganizationAttributes */ name?: any; /** * allow user to modify this field after signup * @type {boolean} * @memberof CreateOrganizationAttributes */ mutable?: any; /** * only administrators can modify this value * @type {boolean} * @memberof CreateOrganizationAttributes */ reserved?: any; /** * data type for this new attribute * @type {string} * @memberof CreateOrganizationAttributes */ dataType?: CreateOrganizationAttributesDataTypeEnum; /** * true if this attribute is mandatory * @type {boolean} * @memberof CreateOrganizationAttributes */ required?: any; } /** * @export * @enum {string} */ export declare enum CreateOrganizationAttributesDataTypeEnum { Boolean = "Boolean", DateTime = "DateTime", Number = "Number", String = "String" }