com.descope.model.user.response.UserResponse 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.user.response;
import com.descope.model.auth.AssociatedTenant;
import java.util.List;
import java.util.Map;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
@SuppressWarnings("checkstyle:MemberName")
public class UserResponse {
String userId;
List loginIds;
String email;
Boolean verifiedEmail;
String phone;
Boolean verifiedPhone;
String name;
String givenName;
String middleName;
String familyName;
List roleNames;
List userTenants;
String status;
String picture;
Boolean test;
Long createdTime;
Map customAttributes;
Boolean TOTP;
Boolean SAML;
Map oAuth;
List ssoAppIds;
}