com.descope.model.audit.AuditRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java library used to integrate with Descope.
The newest version!
package com.descope.model.audit;
import com.descope.enums.AuditType;
import java.time.Instant;
import java.util.List;
import java.util.Map;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class AuditRecord {
String projectId;
String userId;
String actorId;
AuditType type;
String action;
Instant occurred;
String device;
String method;
String geo;
String remoteAddress;
List loginIds;
List tenants;
Map data;
}