/** * 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. */ import { OpalCommonSchemasDataDataSourceConfig } from './opal-common-schemas-data-data-source-config'; /** * * @export * @interface ScopeConfigRead */ export interface ScopeConfigRead { /** * * @type {OpalCommonSchemasDataDataSourceConfig} * @memberof ScopeConfigRead */ data?: OpalCommonSchemasDataDataSourceConfig; /** * Unique id of the ScopeConfig * @type {string} * @memberof ScopeConfigRead */ id: string; /** * Unique id of the organization that the ScopeConfig belongs to. * @type {string} * @memberof ScopeConfigRead */ organization_id: string; /** * Unique id of the project that the ScopeConfig belongs to. * @type {string} * @memberof ScopeConfigRead */ project_id: string; /** * Unique id of the environment that the ScopeConfig belongs to. * @type {string} * @memberof ScopeConfigRead */ environment_id: string; /** * Date and time when the ScopeConfig was created (ISO_8601 format). * @type {string} * @memberof ScopeConfigRead */ created_at: string; /** * Date and time when the ScopeConfig was last updated/modified (ISO_8601 format). * @type {string} * @memberof ScopeConfigRead */ updated_at: string; }