Sha256: ce8bcecfc02f8cd3fc354193ab3d2059daeeabdb5938399f721cd36f4e7e6c26
Contents?: true
Size: 557 Bytes
Versions: 17
Compression:
Stored size: 557 Bytes
Contents
# typed: strict # frozen_string_literal: true require "nexus/invision/value_object" require "sorbet-runtime" module Nexus module Invision module Requests class CreateMemberWarning < T::Struct include ValueObject const :member_id, Integer const :moderator, T.nilable(Integer) const :reason, T.nilable(Integer) const :acknowledged, T.nilable(T::Boolean) const :suspend, T.nilable(T.any(Time, Integer)) const :member_note, T.nilable(String), name: "memberNote" end end end end
Version data entries
17 entries across 17 versions & 1 rubygems