/** * 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 { ConditionSetData } from './condition-set-data'; import { ResourceTypeData } from './resource-type-data'; import { RoleData } from './role-data'; import { TenantData } from './tenant-data'; import { UserData } from './user-data'; /** * * @export * @interface FullData */ export interface FullData { /** * * @type {{ [key: string]: UserData; }} * @memberof FullData */ users: { [key: string]: UserData; }; /** * * @type {{ [key: string]: TenantData; }} * @memberof FullData */ tenants: { [key: string]: TenantData; }; /** * * @type {{ [key: string]: RoleData; }} * @memberof FullData */ roles: { [key: string]: RoleData; }; /** * * @type {{ [key: string]: { [key: string]: { [key: string]: Array; }; }; }} * @memberof FullData */ condition_set_rules: { [key: string]: { [key: string]: { [key: string]: Array; }; }; }; /** * * @type {{ [key: string]: { [key: string]: { [key: string]: Array; }; }; }} * @memberof FullData */ relationships: { [key: string]: { [key: string]: { [key: string]: Array; }; }; }; /** * * @type {{ [key: string]: ResourceTypeData; }} * @memberof FullData */ resource_types: { [key: string]: ResourceTypeData; }; /** * * @type {{ [key: string]: ConditionSetData; }} * @memberof FullData */ condition_sets: { [key: string]: ConditionSetData; }; /** * * @type {{ [key: string]: { [key: string]: Array; }; }} * @memberof FullData */ role_assignments: { [key: string]: { [key: string]: Array; }; }; }