Protocol::XMLRPC::Value::DateTime - XML-RPC array
my $datetime = Protocol::XMLRPC::Value::DateTime->new(1234567890);
my $datetime = Protocol::XMLRPC::Value::DateTime->parse('19980717T14:08:55');
Creates new Protocol::XMLRPC::Value::DateTime instance. Accepts unix epoch time.
Parses dateTime.iso8601 string and creates a new
Protocol::XMLRPC:::Value::Base64 instance.
my $datetime = Protocol::XMLRPC::Value::DateTime->new(1234567890);
# $datetime->value returns 20091302T23:31:30
Returns serialized Perl5 scalar.
my $datetime = Protocol::XMLRPC::Value::DateTime->new(1234567890);
# $datetime->to_string is now '<dateTime.iso8601>20091302T23:31:30</dateTime.iso8601>'
XML-RPC datetime string representation.