Sha256: a24d46c9b4e8df4e69c8cb4819bf83d63d6cc6f6bfbd9d236fc851013be4b30a
Contents?: true
Size: 330 Bytes
Versions: 33
Compression:
Stored size: 330 Bytes
Contents
# coding: utf-8 # frozen_string_literal: true module Stealth class ServiceMessage attr_accessor :sender_id, :timestamp, :service, :message, :location, :attachments, :payload, :referral def initialize(service:) @service = service @attachments = [] @location = {} end end end
Version data entries
33 entries across 33 versions & 1 rubygems