This repository was archived by the owner on Nov 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ Name | Type | Description | Notes
99** authorId** | ** Number** | This is the userproject_id. This field is only used if the call is made from an App | [ optional]
1010** visaId** | ** String** | | [ optional] [ readonly]
1111** content** | ** String** | | [ optional]
12- ** replyToCommentId** | ** Number** | | [ optional]
1312** createdAt** | ** Date** | | [ optional] [ readonly]
1413** updatedAt** | ** Date** | | [ optional] [ readonly]
1514
Original file line number Diff line number Diff line change @@ -63,9 +63,6 @@ class VisaComment {
6363 if ( data . hasOwnProperty ( 'content' ) ) {
6464 obj [ 'content' ] = ApiClient . convertToType ( data [ 'content' ] , 'String' ) ;
6565 }
66- if ( data . hasOwnProperty ( 'reply_to_comment_id' ) ) {
67- obj [ 'reply_to_comment_id' ] = ApiClient . convertToType ( data [ 'reply_to_comment_id' ] , 'Number' ) ;
68- }
6966 if ( data . hasOwnProperty ( 'created_at' ) ) {
7067 obj [ 'created_at' ] = ApiClient . convertToType ( data [ 'created_at' ] , 'Date' ) ;
7168 }
@@ -105,11 +102,6 @@ VisaComment.prototype['visa_id'] = undefined;
105102 */
106103VisaComment . prototype [ 'content' ] = undefined ;
107104
108- /**
109- * @member {Number} reply_to_comment_id
110- */
111- VisaComment . prototype [ 'reply_to_comment_id' ] = undefined ;
112-
113105/**
114106 * @member {Date} created_at
115107 */
Original file line number Diff line number Diff line change 8484 //expect(instance).to.be();
8585 } ) ;
8686
87- it ( 'should have the property replyToCommentId (base name: "reply_to_comment_id")' , function ( ) {
88- // uncomment below and update the code to test the property replyToCommentId
89- //var instane = new bimdata.VisaComment();
90- //expect(instance).to.be();
91- } ) ;
92-
9387 it ( 'should have the property createdAt (base name: "created_at")' , function ( ) {
9488 // uncomment below and update the code to test the property createdAt
9589 //var instane = new bimdata.VisaComment();
You can’t perform that action at this time.
0 commit comments