22 lines
		
	
	
		
			900 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			900 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
 | |
| Object.defineProperty(exports, "__esModule", { value: true });
 | |
| exports.Content = void 0;
 | |
| const resource_1 = require("../../../core/resource.js");
 | |
| const headers_1 = require("../../../internal/headers.js");
 | |
| const path_1 = require("../../../internal/utils/path.js");
 | |
| class Content extends resource_1.APIResource {
 | |
|     /**
 | |
|      * Retrieve Container File Content
 | |
|      */
 | |
|     retrieve(fileID, params, options) {
 | |
|         const { container_id } = params;
 | |
|         return this._client.get((0, path_1.path) `/containers/${container_id}/files/${fileID}/content`, {
 | |
|             ...options,
 | |
|             headers: (0, headers_1.buildHeaders)([{ Accept: 'application/binary' }, options?.headers]),
 | |
|             __binaryResponse: true,
 | |
|         });
 | |
|     }
 | |
| }
 | |
| exports.Content = Content;
 | |
| //# sourceMappingURL=content.js.map
 |