Sha256: 075d5317d6d1d69ae45f42c92f14e596752b175a9f011de9c754d5979d0ee3bc
Contents?: true
Size: 535 Bytes
Versions: 330
Compression:
Stored size: 535 Bytes
Contents
# frozen_string_literal: true module Files class ShareGroupMember attr_reader :options, :attributes def initialize(attributes = {}, options = {}) @attributes = attributes || {} @options = options || {} end # string - Name of the share group member def name @attributes[:name] end # string - Company of the share group member def company @attributes[:company] end # string - Email of the share group member def email @attributes[:email] end end end
Version data entries
330 entries across 330 versions & 1 rubygems