sub
_type_name {
return
'InvoiceInfo'
;
}
sub
_namespace_uri {
}
our
@_attributes
= (
qw/
AccountId
AccountName
AccountNumber
Amount
CurrencyCode
InvoiceDate
InvoiceId
/
);
sub
_attributes {
my
$self
=
shift
;
return
(
$self
->SUPER::_attributes,
@_attributes
);
}
our
%_attribute_type
= (
AccountId
=>
'long'
,
AccountName
=>
'string'
,
AccountNumber
=>
'string'
,
Amount
=>
'double'
,
CurrencyCode
=>
'string'
,
InvoiceDate
=>
'dateTime'
,
InvoiceId
=>
'long'
,
);
sub
_attribute_type {
my
(
$self
,
$attribute
) =
@_
;
if
(
exists
$_attribute_type
{
$attribute
}) {
return
$_attribute_type
{
$attribute
};
}
return
$self
->SUPER::_attribute_type(
$attribute
);
}
our
%_attribute_min_occurs
= (
AccountId
=> 0,
AccountName
=> 0,
AccountNumber
=> 0,
Amount
=> 0,
CurrencyCode
=> 0,
InvoiceDate
=> 0,
InvoiceId
=> 0,
);
sub
_attribute_min_occurs {
my
(
$self
,
$attribute
) =
@_
;
if
(
exists
$_attribute_min_occurs
{
$attribute
}) {
return
$_attribute_min_occurs
{
$attribute
};
}
return
$self
->SUPER::_attribute_min_occurs(
$attribute
);
}
__PACKAGE__->mk_accessors(
@_attributes
);
1;