Project

class pydelfini.delfini_core.models.project.Project(account_id, collections, created_on, description, id, metadata, name)[source]

Bases: object

Project model

Parameters:
account_id
Type:

str

collections
Type:

List[str]

created_on
Type:

datetime.datetime

description
Type:

str

id
Type:

str

metadata
Type:

ProjectMetadata

name
Type:

str

Attributes

account_id

collections

created_on

description

id

metadata

name

classmethod from_dict(src_dict)[source]

Create an instance of Project from a dict

Parameters:

src_dict (Dict[str, Any])

Return type:

T

to_dict()[source]

Convert to a dict

Return type:

Dict[str, Any]