| RT-Client-REST documentation | view source | Contained in the RT-Client-REST distribution. |
RT::Client::REST::Attachment -- this object represents an attachment.
my $attachments = $ticket->attachments;
my $count = $attachments->count;
print "There are $count attachments.\n";
my $iterator = $attachments->get_iterator;
while (my $att = &$iterator) {
print "Id: ", $att->id, "; Subject: ", $att->subject, "\n";
}
An attachment 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 an attachment by itself; instead, you should use
attachments() method of RT::Client::REST::Ticket object to get
an iterator for all attachments for that ticket.
Numeric ID of the attachment.
Numeric ID of the user who created the attachment.
Numeric ID of the object the attachment is associated with. This is not a proper attribute of the attachment as specified by REST -- it is simply to store the ID of the RT::Client::REST::Ticket object this attachment belongs to.
Subject of the attachment.
Content type.
File name (if any).
Numeric ID of the RT::Client::REST::Transaction object this attachment is associated with.
Message ID.
Time when the attachment was created
Actual content of the attachment.
Headers (not parsed), if any.
Parent (not sure what this is yet).
Content encoding, if any.
RT::Client::REST::Attachment 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 attachments() method provided
by RT::Client::REST::Ticket.
To retrieve an attachment, attributes id and parent_id must be set.
Returns 'attachment'.
Dmitri Tikhonov <dtikhonov@yahoo.com>
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. |