NAME

ZCS::Admin::Elements::AuthRequest

DESCRIPTION

Perl data type class for the XML Schema defined element AuthRequest from the namespace urn:zimbraAdmin.

PROPERTIES

The following properties may be accessed using get_PROPERTY / set_PROPERTY methods:

  • name

     $element->set_name($data);
     $element->get_name();
  • account

     $element->set_account($data);
     $element->get_account();
  • password

     $element->set_password($data);
     $element->get_password();

METHODS

new

 my $element = ZCS::Admin::Elements::AuthRequest->new($data);

Constructor. The following data structure may be passed to new():

 {
   name =>  $some_value, # string
   account =>  { # ZCS::Admin::Types::Account
     a =>  { value => $some_value },
   },
   password =>  $some_value, # string
 },

AUTHOR

Generated by SOAP::WSDL