| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  |  | 
| 2 |  |  |  |  |  |  | package Paws::WorkDocs::GetDocumentVersion; | 
| 3 | 1 |  |  | 1 |  | 445 | use Moose; | 
|  | 1 |  |  |  |  | 4 |  | 
|  | 1 |  |  |  |  | 8 |  | 
| 4 |  |  |  |  |  |  | has AuthenticationToken => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'Authentication'); | 
| 5 |  |  |  |  |  |  | has DocumentId => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'DocumentId', required => 1); | 
| 6 |  |  |  |  |  |  | has Fields => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'fields'); | 
| 7 |  |  |  |  |  |  | has IncludeCustomMetadata => (is => 'ro', isa => 'Bool', traits => ['ParamInQuery'], query_name => 'includeCustomMetadata'); | 
| 8 |  |  |  |  |  |  | has VersionId => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'VersionId', required => 1); | 
| 9 |  |  |  |  |  |  |  | 
| 10 | 1 |  |  | 1 |  | 6380 | use MooseX::ClassAttribute; | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 11 |  | 
| 11 |  |  |  |  |  |  |  | 
| 12 |  |  |  |  |  |  | class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetDocumentVersion'); | 
| 13 |  |  |  |  |  |  | class_has _api_uri  => (isa => 'Str', is => 'ro', default => '/api/v1/documents/{DocumentId}/versions/{VersionId}'); | 
| 14 |  |  |  |  |  |  | class_has _api_method  => (isa => 'Str', is => 'ro', default => 'GET'); | 
| 15 |  |  |  |  |  |  | class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::WorkDocs::GetDocumentVersionResponse'); | 
| 16 |  |  |  |  |  |  | class_has _result_key => (isa => 'Str', is => 'ro'); | 
| 17 |  |  |  |  |  |  | 1; | 
| 18 |  |  |  |  |  |  |  | 
| 19 |  |  |  |  |  |  | ### main pod documentation begin ### | 
| 20 |  |  |  |  |  |  |  | 
| 21 |  |  |  |  |  |  | =head1 NAME | 
| 22 |  |  |  |  |  |  |  | 
| 23 |  |  |  |  |  |  | Paws::WorkDocs::GetDocumentVersion - Arguments for method GetDocumentVersion on Paws::WorkDocs | 
| 24 |  |  |  |  |  |  |  | 
| 25 |  |  |  |  |  |  | =head1 DESCRIPTION | 
| 26 |  |  |  |  |  |  |  | 
| 27 |  |  |  |  |  |  | This class represents the parameters used for calling the method GetDocumentVersion on the | 
| 28 |  |  |  |  |  |  | Amazon WorkDocs service. Use the attributes of this class | 
| 29 |  |  |  |  |  |  | as arguments to method GetDocumentVersion. | 
| 30 |  |  |  |  |  |  |  | 
| 31 |  |  |  |  |  |  | You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetDocumentVersion. | 
| 32 |  |  |  |  |  |  |  | 
| 33 |  |  |  |  |  |  | As an example: | 
| 34 |  |  |  |  |  |  |  | 
| 35 |  |  |  |  |  |  | $service_obj->GetDocumentVersion(Att1 => $value1, Att2 => $value2, ...); | 
| 36 |  |  |  |  |  |  |  | 
| 37 |  |  |  |  |  |  | Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. | 
| 38 |  |  |  |  |  |  |  | 
| 39 |  |  |  |  |  |  | =head1 ATTRIBUTES | 
| 40 |  |  |  |  |  |  |  | 
| 41 |  |  |  |  |  |  |  | 
| 42 |  |  |  |  |  |  | =head2 AuthenticationToken => Str | 
| 43 |  |  |  |  |  |  |  | 
| 44 |  |  |  |  |  |  | Amazon WorkDocs authentication token. This field should not be set when | 
| 45 |  |  |  |  |  |  | using administrative API actions, as in accessing the API using AWS | 
| 46 |  |  |  |  |  |  | credentials. | 
| 47 |  |  |  |  |  |  |  | 
| 48 |  |  |  |  |  |  |  | 
| 49 |  |  |  |  |  |  |  | 
| 50 |  |  |  |  |  |  | =head2 B<REQUIRED> DocumentId => Str | 
| 51 |  |  |  |  |  |  |  | 
| 52 |  |  |  |  |  |  | The ID of the document. | 
| 53 |  |  |  |  |  |  |  | 
| 54 |  |  |  |  |  |  |  | 
| 55 |  |  |  |  |  |  |  | 
| 56 |  |  |  |  |  |  | =head2 Fields => Str | 
| 57 |  |  |  |  |  |  |  | 
| 58 |  |  |  |  |  |  | A comma-separated list of values. Specify "SOURCE" to include a URL for | 
| 59 |  |  |  |  |  |  | the source document. | 
| 60 |  |  |  |  |  |  |  | 
| 61 |  |  |  |  |  |  |  | 
| 62 |  |  |  |  |  |  |  | 
| 63 |  |  |  |  |  |  | =head2 IncludeCustomMetadata => Bool | 
| 64 |  |  |  |  |  |  |  | 
| 65 |  |  |  |  |  |  | Set this to TRUE to include custom metadata in the response. | 
| 66 |  |  |  |  |  |  |  | 
| 67 |  |  |  |  |  |  |  | 
| 68 |  |  |  |  |  |  |  | 
| 69 |  |  |  |  |  |  | =head2 B<REQUIRED> VersionId => Str | 
| 70 |  |  |  |  |  |  |  | 
| 71 |  |  |  |  |  |  | The version ID of the document. | 
| 72 |  |  |  |  |  |  |  | 
| 73 |  |  |  |  |  |  |  | 
| 74 |  |  |  |  |  |  |  | 
| 75 |  |  |  |  |  |  |  | 
| 76 |  |  |  |  |  |  | =head1 SEE ALSO | 
| 77 |  |  |  |  |  |  |  | 
| 78 |  |  |  |  |  |  | This class forms part of L<Paws>, documenting arguments for method GetDocumentVersion in L<Paws::WorkDocs> | 
| 79 |  |  |  |  |  |  |  | 
| 80 |  |  |  |  |  |  | =head1 BUGS and CONTRIBUTIONS | 
| 81 |  |  |  |  |  |  |  | 
| 82 |  |  |  |  |  |  | The source code is located here: https://github.com/pplu/aws-sdk-perl | 
| 83 |  |  |  |  |  |  |  | 
| 84 |  |  |  |  |  |  | Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues | 
| 85 |  |  |  |  |  |  |  | 
| 86 |  |  |  |  |  |  | =cut | 
| 87 |  |  |  |  |  |  |  |