Sha256: e6d0ddc617650b1f65d3bb3a06e9d0677db70e59348959b2b053bd80b7823d99

Contents?: true

Size: 600 Bytes

Versions: 1

Compression:

Stored size: 600 Bytes

Contents

module TrackerApi
  module Resources
    class Iteration
      include Virtus.model

      attribute :client

      attribute :created_at, DateTime
      attribute :finish, DateTime
      attribute :id, Integer
      attribute :kind, String
      attribute :length, Integer
      attribute :number, Integer
      attribute :planned, Boolean
      attribute :project_id, Integer
      attribute :start, DateTime
      attribute :stories, [TrackerApi::Resources::Story]
      attribute :story_ids, [Integer]
      attribute :team_strength, Float
      attribute :updated_at, DateTime
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tracker_api-0.1.0 lib/tracker_api/resources/iteration.rb