Class User

    • Method Detail

      • name

        @Nullable
        public abstract String name()
      • emailAddress

        @Nullable
        public abstract String emailAddress()
      • id

        @Nullable
        public abstract Integer id()
      • displayName

        @Nullable
        public abstract String displayName()
      • active

        @Nullable
        public abstract Boolean active()
      • slug

        @Nullable
        public abstract String slug()
      • type

        @Nullable
        public abstract String type()
      • directoryName

        @Nullable
        public abstract String directoryName()
      • deletable

        @Nullable
        public abstract Boolean deletable()
      • lastAuthenticationTimestamp

        @Nullable
        public abstract Long lastAuthenticationTimestamp()
      • mutableDetails

        @Nullable
        public abstract Boolean mutableDetails()
      • mutableGroups

        @Nullable
        public abstract Boolean mutableGroups()
      • create

        public static User create​(List<Error> errors,
                                  String name,
                                  String emailAddress,
                                  int id,
                                  String displayName,
                                  boolean active,
                                  String slug,
                                  String type,
                                  String directoryName,
                                  boolean deletable,
                                  long lastAuthenticationTimestamp,
                                  boolean mutableDetails,
                                  boolean mutableGroups)