Skip to content

Commit 08c3291

Browse files
committed
feat(general): updates for 0.9
1 parent 74043b5 commit 08c3291

File tree

95 files changed

+201
-201
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+201
-201
lines changed

docs/examples/java/account/create-recovery.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ public void main() {
99

1010
Account account = new Account(client);
1111
account.createRecovery(
12-
email = "[email protected]",
13-
url = "https://example.com"
14-
new Continuation<Response>() {
12+
13+
"https://example.com"
14+
new Continuation<Object>() {
1515
@NotNull
1616
@Override
1717
public CoroutineContext getContext() {

docs/examples/java/account/create-verification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ public void main() {
99

1010
Account account = new Account(client);
1111
account.createVerification(
12-
url = "https://example.com"
13-
new Continuation<Response>() {
12+
"https://example.com"
13+
new Continuation<Object>() {
1414
@NotNull
1515
@Override
1616
public CoroutineContext getContext() {

docs/examples/java/account/delete-session.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ public void main() {
99

1010
Account account = new Account(client);
1111
account.deleteSession(
12-
sessionId = "[SESSION_ID]"
13-
new Continuation<Response>() {
12+
"[SESSION_ID]"
13+
new Continuation<Object>() {
1414
@NotNull
1515
@Override
1616
public CoroutineContext getContext() {

docs/examples/java/account/delete-sessions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public void main() {
88
.setJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
99

1010
Account account = new Account(client);
11-
account.deleteSessions(new Continuation<Response>() {
11+
account.deleteSessions(new Continuation<Object>() {
1212
@NotNull
1313
@Override
1414
public CoroutineContext getContext() {

docs/examples/java/account/delete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public void main() {
88
.setJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
99

1010
Account account = new Account(client);
11-
account.delete(new Continuation<Response>() {
11+
account.delete(new Continuation<Object>() {
1212
@NotNull
1313
@Override
1414
public CoroutineContext getContext() {

docs/examples/java/account/get-logs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public void main() {
88
.setJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
99

1010
Account account = new Account(client);
11-
account.getLogs(new Continuation<Response>() {
11+
account.getLogs(new Continuation<Object>() {
1212
@NotNull
1313
@Override
1414
public CoroutineContext getContext() {

docs/examples/java/account/get-prefs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public void main() {
88
.setJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
99

1010
Account account = new Account(client);
11-
account.getPrefs(new Continuation<Response>() {
11+
account.getPrefs(new Continuation<Object>() {
1212
@NotNull
1313
@Override
1414
public CoroutineContext getContext() {

docs/examples/java/account/get-session.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ public void main() {
99

1010
Account account = new Account(client);
1111
account.getSession(
12-
sessionId = "[SESSION_ID]"
13-
new Continuation<Response>() {
12+
"[SESSION_ID]"
13+
new Continuation<Object>() {
1414
@NotNull
1515
@Override
1616
public CoroutineContext getContext() {

docs/examples/java/account/get-sessions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public void main() {
88
.setJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
99

1010
Account account = new Account(client);
11-
account.getSessions(new Continuation<Response>() {
11+
account.getSessions(new Continuation<Object>() {
1212
@NotNull
1313
@Override
1414
public CoroutineContext getContext() {

docs/examples/java/account/get.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public void main() {
88
.setJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
99

1010
Account account = new Account(client);
11-
account.get(new Continuation<Response>() {
11+
account.get(new Continuation<Object>() {
1212
@NotNull
1313
@Override
1414
public CoroutineContext getContext() {

0 commit comments

Comments
 (0)