import { AccessRuleRequest } from './AccessRuleRequest';
import { IpBlock } from '../IpBlock';
/** Credential request to get access to the API */
export interface ApiCredentialRequestParams {
    /** Wanted API routes */
    accessRules: AccessRuleRequest[];
    /** If defined, list of IP blocks that can use the credential */
    allowedIPs?: IpBlock[];
    /** Address where the customer will be redirected after authentication */
    redirection?: string;
}
//# sourceMappingURL=ApiCredentialRequestParams.d.ts.map