CsvEntriesResponse

CsvEntriesResponse
CSV Entries Response

Paginated response containing CSV entries

AllOf
This class requires all of the following:
JSON Example
{
    "offset": 0,
    "number_of_results": 2,
    "total_result_count": 2,
    "total_pages": 1,
    "sort_ascending": false,
    "sort_by": "rowNumber",
    "results": [
        {
            "csv_entry_object": {
                "asset_identifiers": [
                    "win10_vm_1"
                ]
            },
            "type": "VIRTUAL_MACHINE",
            "row": 5
        },
        {
            "csv_entry_object": {
                "asset_identifiers": [
                    "win10_vm_2"
                ]
            },
            "type": "VIRTUAL_MACHINE",
            "row": 4
        }
    ]
}