admin_organization_info_response module#

class edgeimpulse_api.models.admin_organization_info_response.AdminOrganizationInfoResponse(
*,
success: StrictBool,
error: StrictStr | None = None,
cpuComputeTime: float | None = None,
gpuComputeTime: float | None = None,
totalComputeTime: float | None = None,
billable: StrictBool | None = None,
entitlementLimits: EntitlementLimits | None = None,
computeTimeCurrentContractSince: datetime | None = None,
totalStorage: float | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
billable: StrictBool | None#
compute_time_current_contract_since: datetime | None#
cpu_compute_time: float | None#
entitlement_limits: EntitlementLimits | None#
error: StrictStr | None#
classmethod from_dict(
obj: dict,
) AdminOrganizationInfoResponse[source]#

Create an instance of AdminOrganizationInfoResponse from a dict

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

Create an instance of AdminOrganizationInfoResponse from a JSON string

gpu_compute_time: float | None#
success: StrictBool#
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_compute_time: float | None#
total_storage: float | None#