Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
40 lines (31 loc) · 1.26 KB

Entitlement.md

File metadata and controls

40 lines (31 loc) · 1.26 KB

Entitlement

Properties

Name Type Description Notes
description str [optional]
feature_access object [optional]
href str [optional]
id str
instance_quota object [optional]
ip_quota object [optional]
name str [optional]
project_quota int [optional] [default to 0]
slug str
volume_limits object [optional]
volume_quota object [optional]
weight int

Example

from equinix_metal.models.entitlement import Entitlement

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

# convert the object into a dict
entitlement_dict = entitlement_instance.to_dict()
# create an instance of Entitlement from a dict
entitlement_form_dict = entitlement.from_dict(entitlement_dict)

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