Type Alias SsoResponseDto
SsoResponseDto: {
allowedLoginMethods: "ALL" | "SSO_ONLY";
attributeMappings: {
fieldId: string;
samlAttribute: string;
}[];
enabled: boolean;
idpConfigured: boolean;
idpEntityUrl: string | null;
idpSsoUrl: string | null;
mappingLabels: {
[key: string]: string;
};
partnerProviders?: {
enabled: boolean;
key: string;
labelEn: string;
labelKo: string;
partnerKey: string;
}[];
providers: {
available: boolean;
enabled: boolean;
key: string;
kind: "saml" | "partner";
labelEn: string;
labelKo: string;
loginUrl: string | null;
}[];
spAcsUrl: string;
spEntityId: string;
x509Cert: string | null;
}