organization_info_response module#

class edgeimpulse_api.models.organization_info_response.OrganizationInfoResponse(
*,
success: StrictBool,
error: StrictStr | None = None,
organization: Organization,
datasets: List[OrganizationDataset],
defaultComputeLimits: OrganizationInfoResponseAllOfDefaultComputeLimits,
entitlementLimits: EntitlementLimits | None = None,
experiments: List[ProjectInfoResponseAllOfExperiments],
readme: ProjectInfoResponseAllOfReadme | None = None,
whitelabelId: StrictInt | None = None,
cliLists: OrganizationInfoResponseAllOfCliLists,
performance: OrganizationInfoResponseAllOfPerformance,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
cli_lists: OrganizationInfoResponseAllOfCliLists#
datasets: List[OrganizationDataset]#
default_compute_limits: OrganizationInfoResponseAllOfDefaultComputeLimits#
entitlement_limits: EntitlementLimits | None#
error: StrictStr | None#
experiments: List[ProjectInfoResponseAllOfExperiments]#
classmethod from_dict(
obj: dict,
) OrganizationInfoResponse[source]#

Create an instance of OrganizationInfoResponse from a dict

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

Create an instance of OrganizationInfoResponse from a JSON string

organization: Organization#
performance: OrganizationInfoResponseAllOfPerformance#
readme: ProjectInfoResponseAllOfReadme | 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

whitelabel_id: StrictInt | None#