import { CredentialStateEnum } from './CredentialStateEnum';
/** Credential request to get access to the API */
export interface ApiCredentialRequest {
    /** Consumer Key to use for further authenticated calls */
    consumerKey: string;
    /** State of the credential */
    state: CredentialStateEnum;
    /** Address where to redirect the client to validate the access */
    validationUrl: string;
}
//# sourceMappingURL=ApiCredentialRequest.d.ts.map