— — |
sub _type_name {
return 'DayTarget' ;
}
sub _namespace_uri {
}
our @_attributes = ( qw/
Bids
TargetAllDays
/ );
sub _attributes {
my $self = shift ;
return ( $self ->SUPER::_attributes, @_attributes );
}
our %_attribute_type = (
Bids => 'ArrayOfDayTargetBid' ,
TargetAllDays => 'boolean' ,
);
sub _attribute_type {
my ( $self , $attribute ) = @_ ;
if ( exists $_attribute_type { $attribute }) {
return $_attribute_type { $attribute };
}
return $self ->SUPER::_attribute_type( $attribute );
}
__PACKAGE__->mk_accessors(__PACKAGE__->_attributes);
1;
|