Class: LWS::Ticket::Tag
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::Ticket::Tag
- Defined in:
- lib/lws/apps/ticket.rb
Overview
The ticket tag class
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The timestamp of when the ticket tag was created.
-
#description ⇒ String?
The description of the ticket tag.
-
#dev_issue_id ⇒ Fixnum?
The ID of the issue in LeftClick’s internal bug tracking system.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the ticket tag.
-
#name ⇒ String
The name of the ticket tag.
-
#slug ⇒ String
readonly
The slug of the ticket tag.
-
#tickets ⇒ Array<Ticket>
The ticket associated with the tag.
-
#updated_at ⇒ String
readonly
The timestamp of when the ticket tag was last updated.
Instance Attribute Details
#created_at ⇒ String (readonly)
Returns the timestamp of when the ticket tag was created.
215 |
# File 'lib/lws/apps/ticket.rb', line 215 attribute :created_at |
#description ⇒ String?
Returns the description of the ticket tag.
194 |
# File 'lib/lws/apps/ticket.rb', line 194 attribute :description |
#dev_issue_id ⇒ Fixnum?
Returns the ID of the issue in LeftClick’s internal bug tracking system.
199 |
# File 'lib/lws/apps/ticket.rb', line 199 attribute :dev_issue_id |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the ticket tag.
190 |
# File 'lib/lws/apps/ticket.rb', line 190 attribute :id |
#name ⇒ String
Returns the name of the ticket tag.
203 |
# File 'lib/lws/apps/ticket.rb', line 203 attribute :name |
#slug ⇒ String (readonly)
Returns the slug of the ticket tag.
207 |
# File 'lib/lws/apps/ticket.rb', line 207 attribute :slug |
#tickets ⇒ Array<Ticket>
Returns the ticket associated with the tag.
211 |
# File 'lib/lws/apps/ticket.rb', line 211 has_many :tickets |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the ticket tag was last updated.
219 |
# File 'lib/lws/apps/ticket.rb', line 219 attribute :updated_at |