/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.0 * * * 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 { /** * A URL-friendly name of the organization (i.e: slug). You will be able to query later using this key instead of the id (UUID) of the organization. * @type {string} * @memberof OrganizationCreate */ key: string; /** * The name of the organization, usually it\'s your company\'s name. * @type {string} * @memberof OrganizationCreate */ name: string; /** * the settings for this project * @type {object} * @memberof OrganizationCreate */ settings?: object; }