This repository was archived by the owner on Nov 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIfcFiles.js
More file actions
127 lines (104 loc) · 3.67 KB
/
Copy pathIfcFiles.js
File metadata and controls
127 lines (104 loc) · 3.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/**
* BIMData API
* BIMData API is a tool to interact with your models stored on BIMData’s servers. Through the API, you can manage your projects, the clouds, upload your IFC files and manage them through endpoints.
*
* The version of the OpenAPI document: v1
* Contact: support@bimdata.io
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
import ApiClient from '../ApiClient';
/**
* The IfcFiles model module.
* @module model/IfcFiles
* @version 0.0.0
*/
class IfcFiles {
/**
* Constructs a new <code>IfcFiles</code>.
* @alias module:model/IfcFiles
*/
constructor() {
IfcFiles.initialize(this);
}
/**
* Initializes the fields of this object.
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
* Only for internal use.
*/
static initialize(obj) {
}
/**
* Constructs a <code>IfcFiles</code> from a plain JavaScript object, optionally creating a new instance.
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @param {module:model/IfcFiles} obj Optional instance to populate.
* @return {module:model/IfcFiles} The populated <code>IfcFiles</code> instance.
*/
static constructFromObject(data, obj) {
if (data) {
obj = obj || new IfcFiles();
if (data.hasOwnProperty('structure_file')) {
obj['structure_file'] = ApiClient.convertToType(data['structure_file'], 'String');
}
if (data.hasOwnProperty('systems_file')) {
obj['systems_file'] = ApiClient.convertToType(data['systems_file'], 'String');
}
if (data.hasOwnProperty('map_file')) {
obj['map_file'] = ApiClient.convertToType(data['map_file'], 'String');
}
if (data.hasOwnProperty('gltf_file')) {
obj['gltf_file'] = ApiClient.convertToType(data['gltf_file'], 'String');
}
if (data.hasOwnProperty('gltf_with_openings_file')) {
obj['gltf_with_openings_file'] = ApiClient.convertToType(data['gltf_with_openings_file'], 'String');
}
if (data.hasOwnProperty('bvh_tree_file')) {
obj['bvh_tree_file'] = ApiClient.convertToType(data['bvh_tree_file'], 'String');
}
if (data.hasOwnProperty('viewer_360_file')) {
obj['viewer_360_file'] = ApiClient.convertToType(data['viewer_360_file'], 'String');
}
if (data.hasOwnProperty('xkt_file')) {
obj['xkt_file'] = ApiClient.convertToType(data['xkt_file'], 'String');
}
}
return obj;
}
}
/**
* @member {String} structure_file
*/
IfcFiles.prototype['structure_file'] = undefined;
/**
* @member {String} systems_file
*/
IfcFiles.prototype['systems_file'] = undefined;
/**
* @member {String} map_file
*/
IfcFiles.prototype['map_file'] = undefined;
/**
* @member {String} gltf_file
*/
IfcFiles.prototype['gltf_file'] = undefined;
/**
* @member {String} gltf_with_openings_file
*/
IfcFiles.prototype['gltf_with_openings_file'] = undefined;
/**
* @member {String} bvh_tree_file
*/
IfcFiles.prototype['bvh_tree_file'] = undefined;
/**
* @member {String} viewer_360_file
*/
IfcFiles.prototype['viewer_360_file'] = undefined;
/**
* @member {String} xkt_file
*/
IfcFiles.prototype['xkt_file'] = undefined;
export default IfcFiles;