# Number of lines of code in new: 16
sub new {
my ($class, %args) = @_;
$class = ref($class) || $class;
my $validatorList = [];
my $self = $class->SUPER::new('validator_list' => $validatorList, %args);
$self->{floppy} = $args{'floppy'};
$self->set_binding_class('binding_class' => 'Com::Vmware::Vcenter::Vm::Hardware::Floppy::Summary');
$self->set_binding_name('name' => 'com.vmware.vcenter.vm.hardware.floppy.summary');
$self->set_binding_field('key' => 'floppy', 'value' => new Com::Vmware::Vapi::Bindings::Type::StringType());
bless $self, $class;
return $self;
}