The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package WSDL::Compile::Test::Op::Example::Response;
use Moose;
use WSDL::Compile::Meta::Attribute::WSDL;

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

no Moose;

1;