entitlement_limits module#

class edgeimpulse_api.models.entitlement_limits.EntitlementLimits(
*,
totalStorage: float | None = None,
computeTimePerYear: float | None = None,
gpuComputeTimePerYear: float | None = None,
numberOfProjects: StrictInt | None = None,
numberOfUsers: StrictInt | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
compute_time_per_year: float | None#
classmethod from_dict(
obj: dict,
) EntitlementLimits[source]#

Create an instance of EntitlementLimits from a dict

classmethod from_json(
json_str: str,
) EntitlementLimits[source]#

Create an instance of EntitlementLimits from a JSON string

gpu_compute_time_per_year: float | None#
number_of_projects: StrictInt | None#
number_of_users: StrictInt | None#
to_dict()[source]#

Returns the dictionary representation of the model using alias

to_json() str[source]#

Returns the JSON representation of the model using alias

to_str() str[source]#

Returns the string representation of the model using alias

total_storage: float | None#