| Total Complexity | 3 | 
| Total Lines | 32 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 17 | final class EnvelopeRecipientAttachmentsEndpoint extends ResourceEndpoint | ||
| 18 | { | ||
| 19 | use GetEndpointTrait; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * @param EnvelopeRecipient|string $recipient | ||
| 23 | */ | ||
| 24 | public function __construct(EnvelopeRecipientsEndpoint $parent, $recipient) | ||
| 31 | ); | ||
| 32 | } | ||
| 33 | |||
| 34 | /** | ||
| 35 | * @return Collection<EnvelopeRecipientAttachment> | ||
| 36 | */ | ||
| 37 | public function list(): Collection | ||
| 40 | } | ||
| 41 | |||
| 42 | /** | ||
| 43 | * @param EnvelopeRecipientAttachment|string $id | ||
| 44 | * @param mixed[] $query | ||
| 45 | */ | ||
| 46 | public function download($id, array $query = []): FileResponse | ||
| 51 |