organization_metrics_response_all_of_metrics module#

class edgeimpulse_api.models.organization_metrics_response_all_of_metrics.OrganizationMetricsResponseAllOfMetrics(
*,
totalJobsComputeTime: float,
jobsComputeTimeCurrentYear: float,
jobsComputeTimeCurrentYearSince: datetime,
cpuComputeTimeCurrentContract: float,
gpuComputeTimeCurrentContract: float,
totalStorage: float,
projectCount: StrictInt,
userCount: StrictInt,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
cpu_compute_time_current_contract: float#
classmethod from_dict(
obj: dict,
) OrganizationMetricsResponseAllOfMetrics[source]#

Create an instance of OrganizationMetricsResponseAllOfMetrics from a dict

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

Create an instance of OrganizationMetricsResponseAllOfMetrics from a JSON string

gpu_compute_time_current_contract: float#
jobs_compute_time_current_year: float#
jobs_compute_time_current_year_since: datetime#
project_count: StrictInt#
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_jobs_compute_time: float#
total_storage: float#
user_count: StrictInt#