/**
 * https://www.keycloak.org/docs-api/11.0/rest-api/index.html#_identityproviderrepresentation
 */
export default interface IdentityProviderRepresentation {
    addReadTokenRoleOnCreate?: boolean;
    alias?: string;
    config?: Record<string, any>;
    displayName?: string;
    enabled?: boolean;
    firstBrokerLoginFlowAlias?: string;
    internalId?: string;
    linkOnly?: boolean;
    postBrokerLoginFlowAlias?: string;
    providerId?: string;
    storeToken?: boolean;
    trustEmail?: boolean;
}
