Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/main/java/com/auth0/json/mgmt/logevents/LogEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.Date;
import java.util.List;
import java.util.Map;

/**
Expand Down Expand Up @@ -50,7 +51,7 @@ public class LogEvent {
@JsonProperty("audience")
private String audience;
@JsonProperty("scope")
private String scope;
private Object scope;
@JsonProperty("strategy")
private String strategy;
@JsonProperty("strategy_type")
Expand Down Expand Up @@ -154,7 +155,7 @@ public String getUserId() {
* @return the scope.
*/
@JsonProperty("scope")
public String getScope() {
public Object getScope() {
return scope;
}

Expand Down
Loading