organizations-local 0.0.54__py3-none-any.whl → 0.0.56__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- organizations_local/organization.py +20 -0
- {organizations_local-0.0.54.dist-info → organizations_local-0.0.56.dist-info}/METADATA +1 -1
- organizations_local-0.0.56.dist-info/RECORD +8 -0
- organizations_local-0.0.54.dist-info/RECORD +0 -7
- {organizations_local-0.0.54.dist-info → organizations_local-0.0.56.dist-info}/WHEEL +0 -0
- {organizations_local-0.0.54.dist-info → organizations_local-0.0.56.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from python_sdk_remote.our_object import OurObject
|
|
2
|
+
|
|
3
|
+
ENTITY_NAME = "Organization"
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Organization(OurObject):
|
|
7
|
+
|
|
8
|
+
# TODO Add all fields
|
|
9
|
+
fields = {
|
|
10
|
+
"organization_id",
|
|
11
|
+
"display_as",
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
def __init__(self, entity_name=ENTITY_NAME, **kwargs):
|
|
15
|
+
super().__init__(entity_name, **kwargs)
|
|
16
|
+
|
|
17
|
+
# Mandatory pure virtual method from OurObject
|
|
18
|
+
def get_name(self):
|
|
19
|
+
print(f"{ENTITY_NAME} get_name() self.fields.display_as={self.fields.display_as}")
|
|
20
|
+
return self.fields.display_as
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
organizations_local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
organizations_local/organization.py,sha256=MenSpj5MdUo8fBGVmFFCwNTk8dyuLBpvXzjwavooEnc,524
|
|
3
|
+
organizations_local/organizations_constants_src.py,sha256=mh_XncG0Q8-k_VUCHWVQRdlMXNnf_GCiCcL-rn7R3lw,902
|
|
4
|
+
organizations_local/organizations_local.py,sha256=9xRc_HYE9_24YgLh070Em2kRfetwbbr1wNGlzEP5Mfs,14107
|
|
5
|
+
organizations_local-0.0.56.dist-info/METADATA,sha256=ZPPBB3xSTSRNHPEnCODRx5jobc8h4bFa9sSd80IA6ZQ,773
|
|
6
|
+
organizations_local-0.0.56.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
7
|
+
organizations_local-0.0.56.dist-info/top_level.txt,sha256=Y8wRcm3jFTyMdysBub_P8iqX1VOMS0ohUxA1GQdngFU,20
|
|
8
|
+
organizations_local-0.0.56.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
organizations_local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
organizations_local/organizations_constants_src.py,sha256=mh_XncG0Q8-k_VUCHWVQRdlMXNnf_GCiCcL-rn7R3lw,902
|
|
3
|
-
organizations_local/organizations_local.py,sha256=9xRc_HYE9_24YgLh070Em2kRfetwbbr1wNGlzEP5Mfs,14107
|
|
4
|
-
organizations_local-0.0.54.dist-info/METADATA,sha256=zmgoMmekcztACfmaWtQZ75qN4sQHwlKN1vObtUpWq9k,773
|
|
5
|
-
organizations_local-0.0.54.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
6
|
-
organizations_local-0.0.54.dist-info/top_level.txt,sha256=Y8wRcm3jFTyMdysBub_P8iqX1VOMS0ohUxA1GQdngFU,20
|
|
7
|
-
organizations_local-0.0.54.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|