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

Commit f865954

Browse files
committed
PATCH: remove comment visa nested (#502)
1 parent cd99889 commit f865954

3 files changed

Lines changed: 0 additions & 15 deletions

File tree

docs/VisaComment.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

src/model/VisaComment.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff 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
*/
106103
VisaComment.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
*/

test/model/VisaComment.spec.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,6 @@
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();

0 commit comments

Comments
 (0)