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 44
55Name | 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]
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 } ) ;
You can’t perform that action at this time.
0 commit comments