com.descope.model.mgmt.AccessKeyResponseDetails 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.mgmt;
import com.descope.model.auth.AssociatedTenant;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class AccessKeyResponseDetails {
private String id;
private String name;
private List roleNames;
private List keyTenants;
private String status;
private long createdTime;
private long expireTime;
private String createdBy;
private String clientId;
private String userId;
}