enterprise_trial module#

class edgeimpulse_api.models.enterprise_trial.EnterpriseTrial(
*,
id: StrictInt,
userId: StrictInt | None = None,
organizationId: StrictInt | None = None,
created: datetime,
expirationDate: datetime,
notes: StrictStr | None = None,
expiredDate: datetime | None,
deletedDate: datetime | None,
upgradedDate: datetime | None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
created: datetime#
deleted_date: datetime | None#
expiration_date: datetime#
expired_date: datetime | None#
classmethod from_dict(
obj: dict,
) EnterpriseTrial[source]#

Create an instance of EnterpriseTrial from a dict

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

Create an instance of EnterpriseTrial from a JSON string

id: StrictInt#
notes: StrictStr | None#
organization_id: 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

upgraded_date: datetime | None#
user_id: StrictInt | None#