The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Example::Op::CreateCustomer::Fault;

use Moose;

use MooseX::Types::XMLSchema qw( :all );
use WSDL::Compile::Meta::Attribute::WSDL;


has 'CustomerID' => (
    metaclass => 'WSDL',
    is => 'rw',
    isa => 'xs:string',
);


no Moose;

1;