/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { UserGroupAccessInfo } from './UserGroupAccessInfo'; /** * ModelSerializer for user group access policies */ export type UserGroupAccess = { /** * Platform key where the groups exist */ platform_key: string; /** * ID of the user to manage group access for */ user_id: number; /** * List of group IDs to grant access to */ groups_to_add?: Array; /** * List of group IDs to revoke access from */ groups_to_remove?: Array; /** * Policy ID */ readonly policy_id: number; /** * Policy name */ readonly policy_name: string; /** * Groups with access */ readonly groups_with_access: Array; };