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 pathDirectionRequest.js
More file actions
94 lines (76 loc) · 2.56 KB
/
DirectionRequest.js
File metadata and controls
94 lines (76 loc) · 2.56 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
/**
* 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: [email protected]
*
* 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 DirectionRequest model module.
* @module model/DirectionRequest
* @version 0.0.0
*/
class DirectionRequest {
/**
* Constructs a new <code>DirectionRequest</code>.
* Adds nested create feature
* @alias module:model/DirectionRequest
* @param x {Number}
* @param y {Number}
* @param z {Number}
*/
constructor(x, y, z) {
DirectionRequest.initialize(this, x, y, z);
}
/**
* 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, x, y, z) {
obj['x'] = x;
obj['y'] = y;
obj['z'] = z;
}
/**
* Constructs a <code>DirectionRequest</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/DirectionRequest} obj Optional instance to populate.
* @return {module:model/DirectionRequest} The populated <code>DirectionRequest</code> instance.
*/
static constructFromObject(data, obj) {
if (data) {
obj = obj || new DirectionRequest();
if (data.hasOwnProperty('x')) {
obj['x'] = ApiClient.convertToType(data['x'], 'Number');
}
if (data.hasOwnProperty('y')) {
obj['y'] = ApiClient.convertToType(data['y'], 'Number');
}
if (data.hasOwnProperty('z')) {
obj['z'] = ApiClient.convertToType(data['z'], 'Number');
}
}
return obj;
}
}
/**
* @member {Number} x
*/
DirectionRequest.prototype['x'] = undefined;
/**
* @member {Number} y
*/
DirectionRequest.prototype['y'] = undefined;
/**
* @member {Number} z
*/
DirectionRequest.prototype['z'] = undefined;
export default DirectionRequest;