Skip to content
This repository was archived by the owner on Nov 18, 2025. It is now read-only.

Commit 2e577ac

Browse files
committed
PATCH: add due_date to singleSjonTopic
1 parent 3832be2 commit 2e577ac

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

docs/SingleJsonTopic.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**index** | **Number** | | [optional]
2121
**assignedTo** | **String** | | [optional]
2222
**format** | **String** | | [optional]
23+
**dueDate** | **Date** | | [optional]
2324
**comments** | [**[Comment]**](Comment.md) | | [optional]
2425
**viewpoints** | [**[Viewpoint]**](Viewpoint.md) | | [optional]
2526

src/model/SingleJsonTopic.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868

6969

7070

71+
7172
};
7273

7374
/**
@@ -132,6 +133,9 @@
132133
if (data.hasOwnProperty('format')) {
133134
obj['format'] = ApiClient.convertToType(data['format'], 'String');
134135
}
136+
if (data.hasOwnProperty('due_date')) {
137+
obj['due_date'] = ApiClient.convertToType(data['due_date'], 'Date');
138+
}
135139
if (data.hasOwnProperty('comments')) {
136140
obj['comments'] = ApiClient.convertToType(data['comments'], [Comment]);
137141
}
@@ -210,6 +214,10 @@
210214
* @member {String} format
211215
*/
212216
exports.prototype['format'] = undefined;
217+
/**
218+
* @member {Date} due_date
219+
*/
220+
exports.prototype['due_date'] = undefined;
213221
/**
214222
* @member {Array.<module:model/Comment>} comments
215223
*/

test/model/SingleJsonTopic.spec.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,12 @@
159159
//expect(instance).to.be();
160160
});
161161

162+
it('should have the property dueDate (base name: "due_date")', function() {
163+
// uncomment below and update the code to test the property dueDate
164+
//var instance = new bimdata.SingleJsonTopic();
165+
//expect(instance).to.be();
166+
});
167+
162168
it('should have the property comments (base name: "comments")', function() {
163169
// uncomment below and update the code to test the property comments
164170
//var instance = new bimdata.SingleJsonTopic();

0 commit comments

Comments
 (0)