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

Commit f7b4c79

Browse files
committed
PATCH: bcf detailed extensions labels
1 parent 1065ee1 commit f7b4c79

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/DetailedExtensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**labels** | [**[Label]**](Label.md) | | [optional]
7+
**topicLabels** | [**[Label]**](Label.md) | | [optional]
88
**topicTypes** | [**[TopicType]**](TopicType.md) | | [optional]
99
**topicStatuses** | [**[TopicStatus]**](TopicStatus.md) | | [optional]
1010
**priorities** | [**[Priority]**](Priority.md) | | [optional]

src/model/DetailedExtensions.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ class DetailedExtensions {
5252
if (data) {
5353
obj = obj || new DetailedExtensions();
5454

55-
if (data.hasOwnProperty('labels')) {
56-
obj['labels'] = ApiClient.convertToType(data['labels'], [Label]);
55+
if (data.hasOwnProperty('topic_labels')) {
56+
obj['topic_labels'] = ApiClient.convertToType(data['topic_labels'], [Label]);
5757
}
5858
if (data.hasOwnProperty('topic_types')) {
5959
obj['topic_types'] = ApiClient.convertToType(data['topic_types'], [TopicType]);
@@ -75,9 +75,9 @@ class DetailedExtensions {
7575
}
7676

7777
/**
78-
* @member {Array.<module:model/Label>} labels
78+
* @member {Array.<module:model/Label>} topic_labels
7979
*/
80-
DetailedExtensions.prototype['labels'] = undefined;
80+
DetailedExtensions.prototype['topic_labels'] = undefined;
8181

8282
/**
8383
* @member {Array.<module:model/TopicType>} topic_types

test/model/DetailedExtensions.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
//expect(instance).to.be.a(bimdata.DetailedExtensions);
5555
});
5656

57-
it('should have the property labels (base name: "labels")', function() {
58-
// uncomment below and update the code to test the property labels
57+
it('should have the property topicLabels (base name: "topic_labels")', function() {
58+
// uncomment below and update the code to test the property topicLabels
5959
//var instane = new bimdata.DetailedExtensions();
6060
//expect(instance).to.be();
6161
});

0 commit comments

Comments
 (0)