NAME
WWW::Bund::Response::Raw - Raw response — returns content as-is
VERSION
version 0.001
SYNOPSIS
use WWW::Bund::Response::Raw;
my $response = WWW::Bund::Response::Raw->new(
content => 'plain text response',
content_type => 'text/plain',
);
my $data = $response->data; # 'plain text response'
DESCRIPTION
Pass-through response parser for non-JSON, non-XML responses. Returns content as-is without parsing.
Used as fallback when content type is not recognized.
data
Returns content unchanged.
SUPPORT
Issues
Please report bugs and feature requests on GitHub at https://github.com/Getty/p5-www-bund/issues.
CONTRIBUTING
Contributions are welcome! Please fork the repository and submit a pull request.
AUTHOR
Torsten Raudssus <torsten@raudssus.de>
COPYRIGHT AND LICENSE
This software is copyright (c) 2026 by Torsten Raudssus.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.