@@ -223,9 +223,9 @@ Column base model
223223* ** model_id** : Optional[ str] = None
224224* ** dims** : Optional[ tuple[ int]] = None
225225 it is mandatory when data_type is Array
226- * ** tol** : Optional[ int] = 0
226+ * ** tol** : Optional[ int | None ] = 0
227227 Tolerance for ImageData width and height.
228- Images can be loaded with size (w +- tol, h +- tol) pixels
228+ Images can be loaded with size (w ± tol, h ± tol) pixels
229229* ** classes_names** : Optional[ list[ str]] = None
230230 it is mandatory when the column is the target
231231 in multilabel classification tasks
@@ -870,6 +870,30 @@ false positive and false negative costs for each class
870870----
871871
872872
873+ ## NumericLicenceFeatureInfo
874+ ``` python
875+ NumericLicenceFeatureInfo()
876+ ```
877+
878+
879+ ---
880+ Numeric Licence feature info model
881+
882+
883+ ** Attributes**
884+
885+ * ** feature** : NumericLicenceFeature
886+ Current numeric feature
887+ * ** max_value** : int | None
888+ Maximum value of the feature. If None, no limit is set
889+ * ** used_value** : int
890+ Used value of the feature. If max_value is None,
891+ this value defaults to 0
892+
893+
894+ ----
895+
896+
873897## NumericSegmentRule
874898``` python
875899NumericSegmentRule()
@@ -919,6 +943,30 @@ Project model
919943----
920944
921945
946+ ## ReferenceInfo
947+ ``` python
948+ ReferenceInfo()
949+ ```
950+
951+
952+ ---
953+ Reference info
954+
955+
956+ ** Attributes**
957+
958+ * ** time_intervals** : list[ tuple[ float, float]]
959+ List of time intervals used as model reference with tuples
960+ containing the start and end time of the intervals
961+ Can be the default time intervals or segment specific ones
962+ * ** segment_id** : str | None
963+ Segment id associated to the model reference considered, None if the
964+ reference is for the whole population (default)
965+
966+
967+ ----
968+
969+
922970## RegressionTaskCostInfo
923971``` python
924972RegressionTaskCostInfo()
@@ -1269,8 +1317,7 @@ SubscriptionPlanInfo()
12691317
12701318---
12711319Data model for a subscription plan
1272- Permission limit set to None means no limit is set
1273- Expiration date set to None means no expiration is set
1320+
12741321Product key data are set only if a product key is associated to the
12751322subscription plan
12761323
@@ -1279,14 +1326,14 @@ subscription plan
12791326
12801327* ** subscription_id** : str
12811328* ** type** : SubscriptionType
1282- * ** max_tasks** : int | None
1283- * ** max_users** : int | None
1284- * ** monitoring** : bool
1285- * ** explainability** : bool
1286- * ** retraining** : bool
1329+ * ** boolean_licence_features** : list[ BooleanLicenceFeature]
1330+ Features which are either enabled or disabled
1331+ * ** numeric_licence_features** : list[ NumericLicenceFeatureInfo]]
1332+ Features associated with a usage limit
12871333* ** is_active** : bool
12881334* ** start_date** : date
12891335* ** expiration_date** : date | None
1336+ If set to None, no expiration is set
12901337* ** product_key** : str | None
12911338* ** product_key_status** : ProductKeyStatus | None
12921339
0 commit comments