Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

IOTRole
Anchor
IOTRole
IOTRole

Code Block
languagetypescript
interface IOTRole {
  id: string;
  name: string;
  permissions: string[];
  is_custom: boolean;
  description?: string;
  project_id: string;
}

...