Source code for kappa_sdk.wellbore.wellbore_perforation
from datetime import datetime
from typing import List
from .depth_collection import DepthCollection
[docs]
class WellborePerforation:
[docs]
    def __init__(self, start_date: datetime, depth_collections: List[DepthCollection]) -> None:
        self.__start_date = start_date
        self.__depth_collections = depth_collections 
    @property
    def start_date(self) -> datetime:
        """Gets the start date of this :class:`WellborePerforation`."""
        return self.__start_date
    @property
    def depth_collections(self) -> List[DepthCollection]:
        """Gets the depth collection create DTO of this :class:`WellborePerforation`."""
        return self.__depth_collections