We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd4d7e commit ca1d0e1Copy full SHA for ca1d0e1
src/Data/SpaceData.php
@@ -38,11 +38,21 @@ public function name(): string
38
return $this->getString('name', "");
39
}
40
41
+ public function id(): string
42
+ {
43
+ return $this->getString('id', "");
44
+ }
45
+
46
public function createdAt(): null|string
47
{
48
return $this->getFormattedDateTime('created_at', "", format: "Y-m-d");
49
50
51
+ public function updatedAt(): null|string
52
53
+ return $this->getFormattedDateTime('updated_at', "", format: "Y-m-d");
54
55
56
57
58
public function planDescription(): null|string
0 commit comments