Sha256: 00f07e19fa44c136792e36f60866a12a012e2ff36849069eb5ecf283e98bd70a
Contents?: true
Size: 914 Bytes
Versions: 6
Compression:
Stored size: 914 Bytes
Contents
# BundleDownload ## Example BundleDownload Object ``` { "download_method": "file", "path": "a/b/test.txt", "created_at": "2020-01-01 00:00:00" } ``` * `download_method` (string): Download method (file or full_zip) * `path` (string): Download path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters. * `created_at` (date-time): Download date/time --- ## List Bundle Downloads ``` Files::BundleDownload.list( per_page: 1, bundle_registration_id: 1 ) ``` ### Parameters * `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header. * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended). * `bundle_registration_id` (int64): Required - BundleRegistration ID
Version data entries
6 entries across 6 versions & 1 rubygems