Skip to content

Commit

Permalink
update des for user require detail class
Browse files Browse the repository at this point in the history
  • Loading branch information
chuongmep committed Aug 23, 2024
1 parent a05f2fd commit 0a66600
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions APSToolkitPython/src/aps_toolkit/ProDbReaderRevit.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,23 @@

class PropDbReaderRevit(PropReader):
"""
Class PropDbReaderRevit to read properties from Revit model
Class to read properties from a Revit model.
Attributes:
----------
urn : str
Unique identifier of the Revit model.
token : Token
Access token to authenticate the user.
region : str
Region of the model: US, EMEA, or APAC.
Methods:
--------
__init__(urn, token, region="US", manifest_item: [ManifestItem] = None):
Initializes the PropDbReaderRevit class with model URN, access token, region,
and optional manifest items.
"""

def __int__(self, urn, token, region="US", manifest_item: [ManifestItem] = None):
super().__init__(urn, token, region, manifest_item)

Expand Down

0 comments on commit 0a66600

Please sign in to comment.