GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
RT::Client::REST::Transaction(3) User Contributed Perl Documentation RT::Client::REST::Transaction(3)

RT::Client::REST::Transaction - transaction object representation.

version 0.72

  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";
  }

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.

Numeric ID of the transaction.
Username of the user who created the transaction.
Numeric ID of the object the transaction is associated with.
Type of the transactions. Please refer 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.
New value.
Name of the field the transaction is describing (if any).
I have never seen it set to anything yet. (I will some day investigate this).
Time when the transaction was created.
Actual content of the transaction.
Human-readable description of the transaction as provided by RT.
Not sure what this is yet.

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.

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

Returns 'transaction'.

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

Dean Hamstead <dean@fragfest.com.au>

This software is copyright (c) 2023, 2020 by Dmitri Tikhonov.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2025-07-15 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.