user_organization module#

class edgeimpulse_api.models.user_organization.UserOrganization(
*,
id: StrictInt,
name: StrictStr,
logo: StrictStr | None = None,
isDeveloperProfile: StrictBool,
whitelabelId: StrictInt | None,
isAdmin: StrictBool,
created: datetime,
trialId: float | None,
trialExpiredDate: datetime | None,
trialUpgradedDate: datetime | None,
entitlementLimits: EntitlementLimits,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
created: datetime#
entitlement_limits: EntitlementLimits#
classmethod from_dict(
obj: dict,
) UserOrganization[source]#

Create an instance of UserOrganization from a dict

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

Create an instance of UserOrganization from a JSON string

id: StrictInt#
is_admin: StrictBool#
is_developer_profile: StrictBool#
name: StrictStr#
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

trial_expired_date: datetime | None#
trial_id: float | None#
trial_upgraded_date: datetime | None#
whitelabel_id: StrictInt | None#