This repository was archived by the owner on Mar 14, 2024. 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,6 +9,5 @@ Name | Type | Description | Notes
99** remainingCredits** | [ ** RemainingCredits** ] ( RemainingCredits.md ) | | [ optional]
1010** cost** | [ ** Cost** ] ( Cost.md ) | | [ optional]
1111** paidUsage** | [ ** PaidUsage** ] ( PaidUsage.md ) | | [ optional]
12- ** communityUsage** | [ ** CommunityUsage** ] ( CommunityUsage.md ) | | [ optional]
1312
1413
Original file line number Diff line number Diff line change 55Name | Type | Description | Notes
66------------ | ------------- | ------------- | -------------
77** paidUsage** | [ ** PaidUsage** ] ( PaidUsage.md ) | | [ optional]
8- ** communityUsage** | [ ** CommunityUsage** ] ( CommunityUsage.md ) | | [ optional]
98
109
Original file line number Diff line number Diff line change 33## Enum
44
55
6- * ` BUSINESS ` (value: ` "BUSINESS" ` )
7-
8- * ` COMMUNITY ` (value: ` "COMMUNITY" ` )
9-
10- * ` ENTERPRISE ` (value: ` "ENTERPRISE" ` )
11-
126* ` FREE ` (value: ` "FREE" ` )
137
148* ` PROFESSIONAL ` (value: ` "PROFESSIONAL" ` )
159
10+ * ` BUSINESS ` (value: ` "BUSINESS" ` )
11+
12+ * ` ENTERPRISE ` (value: ` "ENTERPRISE" ` )
13+
1614
Original file line number Diff line number Diff line change 1212 */
1313
1414import ApiClient from '../ApiClient' ;
15- import CommunityUsage from './CommunityUsage' ;
1615import Cost from './Cost' ;
1716import CurrentCost from './CurrentCost' ;
1817import OrganizationCurrentCostAllOf from './OrganizationCurrentCostAllOf' ;
@@ -73,9 +72,6 @@ class OrganizationCurrentCost {
7372 if ( data . hasOwnProperty ( 'paid_usage' ) ) {
7473 obj [ 'paid_usage' ] = PaidUsage . constructFromObject ( data [ 'paid_usage' ] ) ;
7574 }
76- if ( data . hasOwnProperty ( 'community_usage' ) ) {
77- obj [ 'community_usage' ] = CommunityUsage . constructFromObject ( data [ 'community_usage' ] ) ;
78- }
7975 }
8076 return obj ;
8177 }
@@ -109,11 +105,6 @@ OrganizationCurrentCost.prototype['cost'] = undefined;
109105 */
110106OrganizationCurrentCost . prototype [ 'paid_usage' ] = undefined ;
111107
112- /**
113- * @member {module:model/CommunityUsage} community_usage
114- */
115- OrganizationCurrentCost . prototype [ 'community_usage' ] = undefined ;
116-
117108
118109// Implement CurrentCost interface:
119110/**
@@ -138,10 +129,6 @@ CurrentCost.prototype['cost'] = undefined;
138129 * @member {module:model/PaidUsage} paid_usage
139130 */
140131OrganizationCurrentCostAllOf . prototype [ 'paid_usage' ] = undefined ;
141- /**
142- * @member {module:model/CommunityUsage} community_usage
143- */
144- OrganizationCurrentCostAllOf . prototype [ 'community_usage' ] = undefined ;
145132
146133
147134
Original file line number Diff line number Diff line change 1212 */
1313
1414import ApiClient from '../ApiClient' ;
15- import CommunityUsage from './CommunityUsage' ;
1615import PaidUsage from './PaidUsage' ;
1716
1817/**
@@ -52,9 +51,6 @@ class OrganizationCurrentCostAllOf {
5251 if ( data . hasOwnProperty ( 'paid_usage' ) ) {
5352 obj [ 'paid_usage' ] = PaidUsage . constructFromObject ( data [ 'paid_usage' ] ) ;
5453 }
55- if ( data . hasOwnProperty ( 'community_usage' ) ) {
56- obj [ 'community_usage' ] = CommunityUsage . constructFromObject ( data [ 'community_usage' ] ) ;
57- }
5854 }
5955 return obj ;
6056 }
@@ -67,11 +63,6 @@ class OrganizationCurrentCostAllOf {
6763 */
6864OrganizationCurrentCostAllOf . prototype [ 'paid_usage' ] = undefined ;
6965
70- /**
71- * @member {module:model/CommunityUsage} community_usage
72- */
73- OrganizationCurrentCostAllOf . prototype [ 'community_usage' ] = undefined ;
74-
7566
7667
7768
Original file line number Diff line number Diff line change @@ -20,38 +20,31 @@ import ApiClient from '../ApiClient';
2020export default class PlanEnum {
2121
2222 /**
23- * value: "BUSINESS"
24- * @const
25- */
26- "BUSINESS" = "BUSINESS" ;
27-
28-
29- /**
30- * value: "COMMUNITY"
23+ * value: "FREE"
3124 * @const
3225 */
33- "COMMUNITY " = "COMMUNITY " ;
26+ "FREE " = "FREE " ;
3427
3528
3629 /**
37- * value: "ENTERPRISE "
30+ * value: "PROFESSIONAL "
3831 * @const
3932 */
40- "ENTERPRISE " = "ENTERPRISE " ;
33+ "PROFESSIONAL " = "PROFESSIONAL " ;
4134
4235
4336 /**
44- * value: "FREE "
37+ * value: "BUSINESS "
4538 * @const
4639 */
47- "FREE " = "FREE " ;
40+ "BUSINESS " = "BUSINESS " ;
4841
4942
5043 /**
51- * value: "PROFESSIONAL "
44+ * value: "ENTERPRISE "
5245 * @const
5346 */
54- "PROFESSIONAL " = "PROFESSIONAL " ;
47+ "ENTERPRISE " = "ENTERPRISE " ;
5548
5649
5750
Original file line number Diff line number Diff line change 8484 //expect(instance).to.be();
8585 } ) ;
8686
87- it ( 'should have the property communityUsage (base name: "community_usage")' , function ( ) {
88- // uncomment below and update the code to test the property communityUsage
89- //var instance = new QoveryApi.OrganizationCurrentCost();
90- //expect(instance).to.be();
91- } ) ;
92-
9387 } ) ;
9488
9589} ) ) ;
Original file line number Diff line number Diff line change 6060 //expect(instance).to.be();
6161 } ) ;
6262
63- it ( 'should have the property communityUsage (base name: "community_usage")' , function ( ) {
64- // uncomment below and update the code to test the property communityUsage
65- //var instance = new QoveryApi.OrganizationCurrentCostAllOf();
66- //expect(instance).to.be();
67- } ) ;
68-
6963 } ) ;
7064
7165} ) ) ;
You can’t perform that action at this time.
0 commit comments