You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Gets the verifier of this Project. # noqa: E501
536
+
537
+
The name of the project verifier. A verifier is the organization that verifies the calculations of the actual amount of greenhouse gas emissions that have been avoided or sequestered through implementation of the project. # noqa: E501
538
+
539
+
:return: The verifier of this Project. # noqa: E501
540
+
:rtype: str
541
+
"""
542
+
returnself._verifier
543
+
544
+
@verifier.setter
545
+
defverifier(self, verifier):
546
+
"""Sets the verifier of this Project.
547
+
548
+
The name of the project verifier. A verifier is the organization that verifies the calculations of the actual amount of greenhouse gas emissions that have been avoided or sequestered through implementation of the project. # noqa: E501
549
+
550
+
:param verifier: The verifier of this Project. # noqa: E501
551
+
:type: str
552
+
"""
553
+
554
+
self._verifier=verifier
555
+
527
556
@property
528
557
defstandard(self):
529
558
"""Gets the standard of this Project. # noqa: E501
530
559
531
-
An object returning the Standard associated with this project. # noqa: E501
560
+
An object returning the Standard associated with this project. Standards provide guidance on GHG quantification, monitoring, and reporting. Standards can include protocols/methodologies and guidance documents. # noqa: E501
532
561
533
562
:return: The standard of this Project. # noqa: E501
534
563
:rtype: Standard
@@ -539,7 +568,7 @@ def standard(self):
539
568
defstandard(self, standard):
540
569
"""Sets the standard of this Project.
541
570
542
-
An object returning the Standard associated with this project. # noqa: E501
571
+
An object returning the Standard associated with this project. Standards provide guidance on GHG quantification, monitoring, and reporting. Standards can include protocols/methodologies and guidance documents. # noqa: E501
543
572
544
573
:param standard: The standard of this Project. # noqa: E501
0 commit comments