1234567891011121314151617181920212223242526272829303132333435363738394041 |
-
-
-
- var FileUploadOptions = function (fileKey, fileName, mimeType, params, headers, httpMethod) {
- this.fileKey = fileKey || null;
- this.fileName = fileName || null;
- this.mimeType = mimeType || null;
- this.params = params || null;
- this.headers = headers || null;
- this.httpMethod = httpMethod || null;
- };
-
- module.exports = FileUploadOptions;
|