Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove settings from Clone Project response #93

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all 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
13 changes: 0 additions & 13 deletions src/main/java/com/descope/model/project/NewProjectResponse.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.descope.model.project;

import java.util.Map;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
Expand All @@ -13,17 +12,5 @@
public class NewProjectResponse {
private String projectId;
private String projectName;
private Map<String, Object> projectSettingsWeb;
private Map<String, Object> authMethodsMagicLink;
private Map<String, Object> authMethodsOTP;
private Map<String, Object> authMethodsSAML;
private Map<String, Object> authMethodsOAuth;
private Map<String, Object> authMethodsWebAuthn;
private Map<String, Object> authMethodsTOTP;
private Map<String, Object> messagingProvidersWeb;
private Map<String, Object> authMethodsEnchantedLink;
private Map<String, Object> authMethodsPassword;
private Map<String, Object> authMethodsOIDCIDP;
private Map<String, Object> authMethodsEmbeddedLink;
private String tag;
}
Loading