Sha256: 52d442f993ba84435fe1a80d0c4c6801b523fa903bbb2f5d47b18d9193b33e94
Contents?: true
Size: 665 Bytes
Versions: 19
Compression:
Stored size: 665 Bytes
Contents
module TrackerApi module Resources class Activity include Virtus.model attribute :client attribute :kind, String attribute :guid, String attribute :project_version, Integer attribute :message, String attribute :highlight, String attribute :changes, Array[TrackerApi::Resources::Change] attribute :primary_resources, Array[TrackerApi::Resources::PrimaryResource] attribute :project, TrackerApi::Resources::Project attribute :performed_by, TrackerApi::Resources::Person attribute :occurred_at, DateTime def project=(data) super.client = client end end end end
Version data entries
19 entries across 19 versions & 2 rubygems