# typed: strict # frozen_string_literal: true require "nexus/invision/value_object" require "sorbet-runtime" module Nexus module Invision module Resources # Member is a User with additional information about their membership. class Member < T::Struct include ValueObject const :id, Integer const :primaryGroup, Group end end end end