Class: Tessera::Otrs::Ticket
Instance Attribute Summary collapse
-
#CustomerID ⇒ Object
Returns the value of attribute CustomerID.
-
#CustomerUser ⇒ Object
Returns the value of attribute CustomerUser.
-
#PriorityID ⇒ Object
Returns the value of attribute PriorityID.
-
#QueueID ⇒ Object
Returns the value of attribute QueueID.
-
#State ⇒ Object
Returns the value of attribute State.
-
#Title ⇒ Object
Returns the value of attribute Title.
Instance Method Summary collapse
-
#initialize(title:, queue:, state:, priority:, customer_user:, customer_id:) ⇒ Ticket
constructor
rubocop:disable Metrics/ParameterLists.
Methods inherited from Base
Constructor Details
#initialize(title:, queue:, state:, priority:, customer_user:, customer_id:) ⇒ Ticket
rubocop:disable Metrics/ParameterLists
7 8 9 10 11 12 13 14 |
# File 'lib/tessera/otrs/ticket.rb', line 7 def initialize(title:, queue:, state:, priority:, customer_user:, customer_id:) @Title = title @QueueID = queue @State = state @PriorityID = priority @CustomerUser = customer_user @CustomerID = customer_id end |
Instance Attribute Details
#CustomerID ⇒ Object
Returns the value of attribute CustomerID.
4 5 6 |
# File 'lib/tessera/otrs/ticket.rb', line 4 def CustomerID @CustomerID end |
#CustomerUser ⇒ Object
Returns the value of attribute CustomerUser.
4 5 6 |
# File 'lib/tessera/otrs/ticket.rb', line 4 def CustomerUser @CustomerUser end |
#PriorityID ⇒ Object
Returns the value of attribute PriorityID.
4 5 6 |
# File 'lib/tessera/otrs/ticket.rb', line 4 def PriorityID @PriorityID end |
#QueueID ⇒ Object
Returns the value of attribute QueueID.
4 5 6 |
# File 'lib/tessera/otrs/ticket.rb', line 4 def QueueID @QueueID end |
#State ⇒ Object
Returns the value of attribute State.
4 5 6 |
# File 'lib/tessera/otrs/ticket.rb', line 4 def State @State end |
#Title ⇒ Object
Returns the value of attribute Title.
4 5 6 |
# File 'lib/tessera/otrs/ticket.rb', line 4 def Title @Title end |