RT::Client::REST::Transaction - this object represents a transaction.


RT-Client-REST documentation  | view source Contained in the RT-Client-REST distribution.

Index


NAME

Top

RT::Client::REST::Transaction -- this object represents a transaction.

SYNOPSIS

Top

  my $transactions = $ticket->transactions;

  my $count = $transactions->count;
  print "There are $count transactions.\n";

  my $iterator = $transactions->get_iterator;
  while (my $tr = &$iterator) {
      print "Id: ", $tr->id, "; Type: ", $tr->type, "\n";
  }

DESCRIPTION

Top

A transaction is a second-class citizen, as it does not exist (at least from the current REST protocol implementation) by itself. At the moment, it is always associated with a ticket (see parent_id attribute). Thus, you will rarely retrieve a transaction by itself; instead, you should use transactions() method of RT::Client::REST::Ticket object to get an iterator for all (or some) transactions for that ticket.

ATTRIBUTES

Top

id

Numeric ID of the transaction.

creator

Username of the user who created the transaction.

parent_id

Numeric ID of the object the transaction is associated with.

type

Type of the transactions. Please referer to RT::Client::REST documentation for the list of transaction types you can expect this field to contain. Note that there may be some transaction types not (dis)covered yet.

old_value

Old value.

new_value

New value.

field

Name of the field the transaction is describing (if any).

attachments

I have never seen it set to anything yet. (I will some day investigate this).

created

Time when the transaction was created.

content

Actual content of the transaction.

description

Human-readable description of the transaction as provided by RT.

data

Not sure what this is yet.

METHODS

Top

RT::Client::REST::Transaction is a read-only object, so you cannot store() it. Also, because it is a second-class citizen, you cannot search() or count() it -- use transactions() method provided by RT::Client::REST::Ticket.

retrieve

To retrieve a transaction, attributes id and parent_id must be set.

INTERNAL METHODS

Top

rt_type

Returns 'transaction'.

SEE ALSO

Top

RT::Client::REST, RT::Client::REST::Ticket, RT::Client::REST::SearchResult.

AUTHOR

Top

Dmitri Tikhonov <dtikhonov@yahoo.com>

LICENSE

Top

Perl license with the exception of RT::Client::REST, which is GPLed.


RT-Client-REST documentation  | view source Contained in the RT-Client-REST distribution.