The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Moose;
has Payload => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'payload');
class_has _stream_param => (is => 'ro', default => 'Payload');
has _request_id => (is => 'ro', isa => 'Str');
1;
### main pod documentation begin ###
=head1 NAME
Paws::IoTData::GetThingShadowResponse
=head1 ATTRIBUTES
=head2 Payload => Str
The state information, in JSON format.
=head2 _request_id => Str
=cut