public async Task GetAttachmentFileAsync()
        {
            var file = await _signatureService.GetAttachmentFileAsync(_documentId, _attachmentId, FileFormat.Pades);

            Assert.IsNotNull(file);
            AssertRequest(HttpMethod.Get, $"/signature/documents/{_documentId}/files/attachments/{_attachmentId}?fileFormat=pades");
        }