This repository was archived by the owner on Nov 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed
Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 6868
6969
7070
71+
7172 } ;
7273
7374 /**
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 }
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 */
Original file line number Diff line number Diff line change 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();
You can’t perform that action at this time.
0 commit comments