/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for RBAC groups when returned in a policy. * * We are limiting the returne data since we don't need everything there */ export type RbacPolicyGroup = { readonly id: number; /** * Optional name of the group */ name?: string; /** * The unique identifier for the group */ unique_id: string; /** * Optional group description */ description?: string; };