DOKK / manpages / debian 12 / librt-client-rest-perl / RT::Client::REST::Queue.3pm.en
RT::Client::REST::Queue(3pm) User Contributed Perl Documentation RT::Client::REST::Queue(3pm)

RT::Client::REST::Queue - queue object representation.

version 0.60

  my $rt = RT::Client::REST->new(server => $ENV{RTSERVER});
  my $queue = RT::Client::REST::Queue->new(
    rt  => $rt,
    id  => 'General',
  )->retrieve;

RT::Client::REST::Queue is based on RT::Client::REST::Object. The representation allows one to retrieve, edit, comment on, and create queue in RT.

Note: RT currently does not allow REST client to search queues.

For retrieval, you can specify either the numeric ID of the queue or its name (case-sensitive). After the retrieval, however, this attribute will be set to the numeric id.
This is the name of the queue.
Queue description.
Correspond address.
Comment address.
Initial priority.
Final priority.
Default due in.
CC Addresses (comma delimited).
Admin CC Addresses (comma delimited).
Access custom fields. Inherited from RT::Client::REST::Object, where you can read more details.

Trivial example:

 my $queue = RT::Client::REST::Queue->new(
   rt => $rt, id => $queue_id
 )->retrieve();
 my @customfields = $queue->cf();
 for my $f (@customfields) {
   my $v = $queue->cf($f);
   say "field: $f";
   say "value: $v";
 }
    

For full explanation of these, please see "DB METHODS" in RT::Client::REST::Object documentation.

Retrieve queue from database.
Create or update the queue.
Currently RT does not allow REST clients to search queues.

Get tickets that are in this queue (note: this may be a lot of tickets). Note: tickets with status "deleted" will not be shown. Object of type RT::Client::REST::SearchResult is returned which then can be used to get to objects of type RT::Client::REST::Ticket.

Returns 'queue'.

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

Dmitri Tikhonov

This software is copyright (c) 2020, 2018 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.

2022-10-16 perl v5.34.0