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 pathDetailedExtensions.js
More file actions
108 lines (88 loc) · 3.33 KB
/
Copy pathDetailedExtensions.js
File metadata and controls
108 lines (88 loc) · 3.33 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
/**
* 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 (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';
import BcfLabel from './BcfLabel';
import Priority from './Priority';
import Stage from './Stage';
import TopicStatus from './TopicStatus';
import TopicType from './TopicType';
/**
* The DetailedExtensions model module.
* @module model/DetailedExtensions
* @version 0.0.0
*/
class DetailedExtensions {
/**
* Constructs a new <code>DetailedExtensions</code>.
* @alias module:model/DetailedExtensions
*/
constructor() {
DetailedExtensions.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>DetailedExtensions</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/DetailedExtensions} obj Optional instance to populate.
* @return {module:model/DetailedExtensions} The populated <code>DetailedExtensions</code> instance.
*/
static constructFromObject(data, obj) {
if (data) {
obj = obj || new DetailedExtensions();
if (data.hasOwnProperty('topic_labels')) {
obj['topic_labels'] = ApiClient.convertToType(data['topic_labels'], [BcfLabel]);
}
if (data.hasOwnProperty('topic_types')) {
obj['topic_types'] = ApiClient.convertToType(data['topic_types'], [TopicType]);
}
if (data.hasOwnProperty('topic_statuses')) {
obj['topic_statuses'] = ApiClient.convertToType(data['topic_statuses'], [TopicStatus]);
}
if (data.hasOwnProperty('priorities')) {
obj['priorities'] = ApiClient.convertToType(data['priorities'], [Priority]);
}
if (data.hasOwnProperty('stages')) {
obj['stages'] = ApiClient.convertToType(data['stages'], [Stage]);
}
}
return obj;
}
}
/**
* @member {Array.<module:model/BcfLabel>} topic_labels
*/
DetailedExtensions.prototype['topic_labels'] = undefined;
/**
* @member {Array.<module:model/TopicType>} topic_types
*/
DetailedExtensions.prototype['topic_types'] = undefined;
/**
* @member {Array.<module:model/TopicStatus>} topic_statuses
*/
DetailedExtensions.prototype['topic_statuses'] = undefined;
/**
* @member {Array.<module:model/Priority>} priorities
*/
DetailedExtensions.prototype['priorities'] = undefined;
/**
* @member {Array.<module:model/Stage>} stages
*/
DetailedExtensions.prototype['stages'] = undefined;
export default DetailedExtensions;