logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

RT::Client::REST::Group - group object representation.

Attributes

id
         For  retrieval,  you  can  specify  either  the  numeric  ID of the group or his group name.  After the
         retrieval, however, this attribute will be set to the numeric id.

       name
         Name of the group

       description
         Description

       members
         List of the members of this group.

Author

       Dean Hamstead <dean@fragfest.com.au>

Db Methods

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

       retrieve
         Retrieve RT group from database.

       store
         Create or update the group.

       search
         Currently RT does not allow REST clients to search groups.

Description

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

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

Internal Methods

rt_type
         Returns 'group'.

Name

       RT::Client::REST::Group - group object representation.

See Also

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

Synopsis

         my $rt = RT::Client::REST->new(server => $ENV{RTSERVER});

         my $group = RT::Client::REST::Group->new(
           rt  => $rt,
           id  => $id,
         )->retrieve;

Version

       version 0.72

See Also