Sha256: 336868598f546e72b6fc546b11df270f1b2ae31a7d8449f58825a640afd81384
Contents?: true
Size: 597 Bytes
Versions: 19
Compression:
Stored size: 597 Bytes
Contents
module TrackerApi module Resources class Notification include Virtus.model attribute :client attribute :id, Integer attribute :message, String attribute :kind, String attribute :project, TrackerApi::Resources::Project attribute :story, TrackerApi::Resources::Story attribute :performer, TrackerApi::Resources::Person attribute :created_at, DateTime attribute :updated_at, DateTime def project=(data) super.client = client end def story=(data) super.client = client end end end end
Version data entries
19 entries across 19 versions & 2 rubygems