Skip to content

Latest commit

 

History

History
executable file
·
40 lines (24 loc) · 1010 Bytes

README.md

File metadata and controls

executable file
·
40 lines (24 loc) · 1010 Bytes

Form1099

(form1099)

Available Operations

  • download - Downloads a form 1099 PDF for a collaborator

download

Downloads a form 1099 PDF for a collaborator

Example Usage

import wingspan
from wingspan.models import operations

s = wingspan.Wingspan()


res = s.form1099.download(id='optical', index='Dakota', year='infrastructures')

if res.download1099_response is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description
id str ✔️ Unique identifier
index str ✔️ Index
year str ✔️ Year

Response

operations.DownloadForm1099Response