Paws/lib/Paws/LocationService/GetMapStyleDescriptorResponse.pm
package Paws::LocationService::GetMapStyleDescriptorResponse;
use Moose;
has Blob => (is => 'ro', isa => 'Str');
has ContentType => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'Content-Type');
use MooseX::ClassAttribute;
class_has _stream_param => (is => 'ro', default => 'Blob');
has _request_id => (is => 'ro', isa => 'Str');
1;
### main pod documentation begin ###
=head1 NAME
Paws::LocationService::GetMapStyleDescriptorResponse
=head1 ATTRIBUTES
=head2 Blob => Str
Contains the body of the style descriptor.
=head2 ContentType => Str
The style descriptor's content type. For example, C<application/json>.
=head2 _request_id => Str
=cut