Skip to content

Commit 610a554

Browse files
committed
Github:19595 & Github:19428
- Fix issue #21852: Some attributes are missing from the notifierobj object
1 parent 2002022 commit 610a554

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

Project/Sources/Classes/GoogleNotification.4dm

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,14 @@ Class constructor($inType : Text; $inProvider : cs.OAuth2Provider; $inParameters
6363
// ----------------------------------------------------
6464

6565

66+
Function get endPoint : Text
67+
68+
return This._internals._endPoint
69+
70+
71+
// ----------------------------------------------------
72+
73+
6674
Function get expiration : Text
6775

6876
return This._internals._expiration
@@ -79,6 +87,14 @@ Function get isStarted : Boolean
7987
// ----------------------------------------------------
8088

8189

90+
Function get timer : Integer
91+
92+
return This._internals._pullInterval
93+
94+
95+
// ----------------------------------------------------
96+
97+
8298
Function start() : Object
8399

84100
/*

Project/Sources/Classes/GraphNotification.4dm

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@ Class constructor($inType : Text; $inProvider : cs.OAuth2Provider; $inParameters
4141
// ----------------------------------------------------
4242

4343

44+
Function get endPoint : Text
45+
46+
return This._internals._endPoint
47+
48+
49+
// ----------------------------------------------------
50+
51+
4452
Function get expiration : Text
4553

4654
return This._internals._expiration
@@ -57,6 +65,14 @@ Function get isStarted : Boolean
5765
// ----------------------------------------------------
5866

5967

68+
Function get timer : Integer
69+
70+
return This._internals._pullInterval
71+
72+
73+
// ----------------------------------------------------
74+
75+
6076
Function start() : Object
6177

6278
/*

0 commit comments

Comments
 (0)