data_campaign_dashboard module#

class edgeimpulse_api.models.data_campaign_dashboard.DataCampaignDashboard(
*,
id: StrictInt,
created: datetime,
name: StrictStr,
emailRecipientUids: List[StrictInt],
latestScreenshot: StrictStr | None = None,
whenToEmail: StrictStr,
showNoOfDays: StrictInt,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
created: datetime#
email_recipient_uids: List[StrictInt]#
classmethod from_dict(
obj: dict,
) DataCampaignDashboard[source]#

Create an instance of DataCampaignDashboard from a dict

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

Create an instance of DataCampaignDashboard from a JSON string

id: StrictInt#
latest_screenshot: StrictStr | None#
name: StrictStr#
show_no_of_days: 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

when_to_email: StrictStr#
classmethod when_to_email_validate_enum(v)[source]#