organization_update_pipeline_body module#

class edgeimpulse_api.models.organization_update_pipeline_body.OrganizationUpdatePipelineBody(
*,
name: StrictStr,
description: StrictStr,
intervalStr: StrictStr | None = None,
steps: List[OrganizationPipelineStep],
dataset: StrictStr | None = None,
projectId: StrictInt | None = None,
emailRecipientUids: List[StrictInt],
notificationWebhook: StrictStr | None = None,
whenToEmail: StrictStr,
archived: StrictBool | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
archived: StrictBool | None#
dataset: StrictStr | None#
description: StrictStr#
email_recipient_uids: List[StrictInt]#
classmethod from_dict(
obj: dict,
) OrganizationUpdatePipelineBody[source]#

Create an instance of OrganizationUpdatePipelineBody from a dict

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

Create an instance of OrganizationUpdatePipelineBody from a JSON string

interval_str: StrictStr | None#
name: StrictStr#
notification_webhook: StrictStr | None#
project_id: StrictInt | None#
steps: List[OrganizationPipelineStep]#
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]#