Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.14 KB

Feature.md

File metadata and controls

34 lines (25 loc) · 1.14 KB

Feature

Feature information

Properties

Name Type Description Notes
count int The feature count
feature_type str The feature type: * `nodeLocked` - Node-locked on the host running the license server * `floating` - Allows concurrent users
is_uncounted bool Feature is uncounted or not
name str The feature name
reservation FeatureReservation

Example

from cyperf.models.feature import Feature

# TODO update the JSON string below
json = "{}"
# create an instance of Feature from a JSON string
feature_instance = Feature.from_json(json)
# print the JSON string representation of the object
print(Feature.to_json())

# convert the object into a dict
feature_dict = feature_instance.to_dict()
# create an instance of Feature from a dict
feature_from_dict = Feature.from_dict(feature_dict)

[Back to Model list] [Back to API list] [Back to README]