organization_create_project module#

class edgeimpulse_api.models.organization_create_project.OrganizationCreateProject(
*,
id: StrictInt,
organizationId: StrictInt,
name: StrictStr,
uploadType: StrictStr,
status: TransformationJobStatusEnum,
transformJobStatus: TransformationJobStatusEnum,
uploadJobId: StrictInt | None = None,
uploadJobStatus: TransformationJobStatusEnum,
uploadJobFilesUploaded: StrictInt | None = None,
projectOwner: StrictStr | None = None,
projectId: StrictInt | None = None,
projectName: StrictStr | None = None,
transformationBlockId: StrictInt | None = None,
builtinTransformationBlock: Dict[str, Any] | None = None,
transformationBlockName: StrictStr | None = None,
category: StrictStr,
created: datetime,
outputDatasetName: StrictStr | None = None,
outputDatasetBucketId: StrictInt | None = None,
outputDatasetBucketPath: StrictStr | None = None,
totalDownloadFileCount: StrictInt,
totalDownloadFileSize: StrictInt,
totalDownloadFileSizeString: StrictStr,
totalUploadFileCount: StrictInt,
transformationParallel: StrictInt,
transformationSummary: OrganizationCreateProjectTransformationSummary,
inProgress: StrictBool,
label: StrictStr | None = None,
filterQuery: StrictStr | None = None,
emailRecipientUids: List[StrictInt] | None = None,
pipelineId: StrictInt | None = None,
pipelineName: StrictStr | None = None,
pipelineRunId: StrictInt | None = None,
pipelineStep: StrictInt | None = None,
operatesOn: TransformationJobOperatesOnEnum,
totalTimeSpentSeconds: StrictInt,
totalTimeSpentString: StrictStr,
createdByUser: CreatedUpdatedByUser | None = None,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
builtin_transformation_block: Dict[str, Any] | None#
category: StrictStr#
classmethod category_validate_enum(v)[source]#
created: datetime#
created_by_user: CreatedUpdatedByUser | None#
email_recipient_uids: List[StrictInt] | None#
filter_query: StrictStr | None#
classmethod from_dict(
obj: dict,
) OrganizationCreateProject[source]#

Create an instance of OrganizationCreateProject from a dict

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

Create an instance of OrganizationCreateProject from a JSON string

id: StrictInt#
in_progress: StrictBool#
label: StrictStr | None#
name: StrictStr#
operates_on: TransformationJobOperatesOnEnum#
organization_id: StrictInt#
output_dataset_bucket_id: StrictInt | None#
output_dataset_bucket_path: StrictStr | None#
output_dataset_name: StrictStr | None#
pipeline_id: StrictInt | None#
pipeline_name: StrictStr | None#
pipeline_run_id: StrictInt | None#
pipeline_step: StrictInt | None#
project_id: StrictInt | None#
project_name: StrictStr | None#
project_owner: StrictStr | None#
status: TransformationJobStatusEnum#
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

total_download_file_count: StrictInt#
total_download_file_size: StrictInt#
total_download_file_size_string: StrictStr#
total_time_spent_seconds: StrictInt#
total_time_spent_string: StrictStr#
total_upload_file_count: StrictInt#
transform_job_status: TransformationJobStatusEnum#
transformation_block_id: StrictInt | None#
transformation_block_name: StrictStr | None#
transformation_parallel: StrictInt#
transformation_summary: OrganizationCreateProjectTransformationSummary#
upload_job_files_uploaded: StrictInt | None#
upload_job_id: StrictInt | None#
upload_job_status: TransformationJobStatusEnum#
upload_type: StrictStr#
classmethod upload_type_validate_enum(v)[source]#