NAME

WWW::Bund::HTTPResponse - Transport-independent HTTP response object

VERSION

version 0.001

SYNOPSIS

use WWW::Bund::HTTPResponse;

my $response = WWW::Bund::HTTPResponse->new(
    status       => 200,
    content      => $decoded_body,
    content_type => 'application/json',
);

DESCRIPTION

Simple immutable HTTP response object returned by WWW::Bund::Role::IO implementations. Contains decoded content (not raw bytes).

status

HTTP status code (200, 404, etc.). Required.

content

Response body as Perl character string (already decoded). Defaults to empty string.

content_type

Content-Type header value. Defaults to empty string.

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.